# HG changeset patch # User Jeff Hammel # Date 1288798516 25200 # Node ID c2f8464e0395225940c6b2f50e4fed16dd8763e1 # Parent 7a76836b50a7985dfcf69d6ccb31dffe7ca920ed use correct method diff -r 7a76836b50a7 -r c2f8464e0395 makeitso/main.py --- a/makeitso/main.py Tue Nov 02 17:56:14 2010 -0700 +++ b/makeitso/main.py Wed Nov 03 08:35:16 2010 -0700 @@ -47,7 +47,7 @@ # get the content content = sys.stdin.read() template = Template(content) - print template.interpolate(**variables) + print template.substitute(**variables) if __name__ == '__main__':