# HG changeset patch # User Jeff Hammel # Date 1294718301 28800 # Node ID e055447376ab30fd4f6fb587bc437b9de38dee1f # Parent 712a6d358083a4b86523bdd81fb060897819d73e fixed double read problem diff -r 712a6d358083 -r e055447376ab makeitso/makeitso.py --- 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