changeset 89:e055447376ab

fixed double read problem
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 10 Jan 2011 19:58:21 -0800
parents 712a6d358083
children 26b9c3bba04e
files makeitso/makeitso.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/makeitso/makeitso.py	Mon Jan 10 19:57:13 2011 -0800
+++ b/makeitso/makeitso.py	Mon Jan 10 19:58:21 2011 -0800
@@ -360,7 +360,7 @@
 
         # do the substitution
         for template in self.templates:
-            template.substitute(output, **variables)
+            template.substitute(output, **vars)
         
 ### command line interface