# HG changeset patch # User Jeff Hammel # Date 1294345787 28800 # Node ID 599c365d9105ad34666fa0ba3a810ec7f12201f1 # Parent 2765a700982e8deaeb989c39368b7ca0671ea0f9 instantiate subtemplates with the appropriate interactive argument diff -r 2765a700982e -r 599c365d9105 makeitso/makeitso.py --- a/makeitso/makeitso.py Thu Jan 06 12:23:10 2011 -0800 +++ b/makeitso/makeitso.py Thu Jan 06 12:29:47 2011 -0800 @@ -250,7 +250,7 @@ # find variables from files for f in filenames: path = os.path.join(dirpath, f) - template = URITemplate(path) + template = URITemplate(path, self.interactive=self.interactive) missed = template.missing(**variables) missing.update(missed) variables.update(dict([(i, '') for i in missed]))