Remove the quotes from the partial string in the profiler timing objects.

This commit is contained in:
Dylan Thacker-Smith
2014-10-18 16:26:18 -04:00
parent f5faa4858c
commit b9ac3fef8f
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ module Liquid
class Include < Tag
def render_with_profiling(context)
Profiler.profile_children("'#{context.evaluate(@template_name)}'") do
Profiler.profile_children(context.evaluate(@template_name).to_s) do
render_without_profiling(context)
end
end