Skip to content

Commit

Permalink
"Merge pull request #458 from matannoam/jade-run\n\nallow runtime to …
Browse files Browse the repository at this point in the history
…be omitted for Jade filter"
  • Loading branch information
miracle2k committed Apr 18, 2016
2 parents f710ac9 + 6991287 commit e0871e5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/webassets/filter/jade.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ def output(self, _in, out, **kwargs):
if self.jade_runtime:
with open(self.jade_runtime) as file:
runtime = ''.join(file.readlines())
else:
runtime = ''

# JavaScript code to initialize the window-level object that will hold
# our compiled Jade templates as functions
Expand Down

0 comments on commit e0871e5

Please sign in to comment.