changeset 1:c2f8464e0395

use correct method
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 03 Nov 2010 08:35:16 -0700
parents 7a76836b50a7
children 825922315ce6
files makeitso/main.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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__':