diff options
author | Benjamin Trofatter <bentrofatter@gmail.com> | 2012-11-09 14:58:24 -0600 |
---|---|---|
committer | Benjamin Trofatter <bentrofatter@gmail.com> | 2012-11-09 14:58:24 -0600 |
commit | ca0ded9194844b22bd77f8fbc56117b4f2d43644 (patch) | |
tree | d7547a6810d1c39ed80cabf6859edd2b0b2dabae | |
parent | 38cd2bb4cb2958193010634d1614919a5e07dbe3 (diff) | |
download | external_python_mako-ca0ded9194844b22bd77f8fbc56117b4f2d43644.tar.gz external_python_mako-ca0ded9194844b22bd77f8fbc56117b4f2d43644.tar.bz2 external_python_mako-ca0ded9194844b22bd77f8fbc56117b4f2d43644.zip |
Fixed error wherein the default for futures in TemplateLookup was set to False.
Now set to None.
-rw-r--r-- | mako/lookup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mako/lookup.py b/mako/lookup.py index 023b6d0..e583dd2 100644 --- a/mako/lookup.py +++ b/mako/lookup.py @@ -172,7 +172,7 @@ class TemplateLookup(TemplateCollection): enable_loop=True, input_encoding=None, preprocessor=None, - futures=False): + futures=None): self.directories = [posixpath.normpath(d) for d in util.to_list(directories, ()) |