Skip to content

Commit

Permalink
- [bug] Fixed bug where mako-render script wasn't
Browse files Browse the repository at this point in the history
  compatible with Py3k.  [ticket:212]
  • Loading branch information
zzzeek committed Apr 14, 2013
1 parent c655657 commit 6c5e273
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.8.1
- [bug] Fixed bug where mako-render script wasn't
compatible with Py3k. [ticket:212]

0.8.0
- [feature] Performance improvement to the
"legacy" HTML escape feature, used for XML
Expand Down
2 changes: 1 addition & 1 deletion scripts/mako-render
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def main(argv=None):

kw = dict([varsplit(var) for var in opts.var])
data = fo.read()
print render(data, filename, kw)
print(render(data, filename, kw))

if __name__ == "__main__":
main()

0 comments on commit 6c5e273

Please sign in to comment.