Skip to content

Commit

Permalink
Fix parse error in cuba/render.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyril David committed Jun 29, 2012
1 parent bf36b2f commit 255d71d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cuba/render.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def partial(template, locals = {})
#
def render(template, locals = {}, options = {}, &block)
_cache.fetch(template) {
Tilt.new(template, 1, options.merge(outvar: '@_output')
Tilt.new(template, 1, options.merge(outvar: '@_output'))
}.render(self, locals, &block)
end

Expand Down

0 comments on commit 255d71d

Please sign in to comment.