Skip to content
Snippets Groups Projects
Commit 6c5e273c authored by Mike Bayer's avatar Mike Bayer
Browse files

- [bug] Fixed bug where mako-render script wasn't

  compatible with Py3k.  [ticket:212]
parent c655657f
No related branches found
No related tags found
No related merge requests found
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
......
......@@ -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% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment