Made plugin options more tolerant so mako. prefix isn't required.
diff --git a/lib/mako/plugin.py b/lib/mako/plugin.py index 16c0de8..7cb0d52 100644 --- a/lib/mako/plugin.py +++ b/lib/mako/plugin.py
@@ -15,6 +15,8 @@ for k, v in options.iteritems(): if k.startswith('mako.'): tmpl_options[k[5:]] = v + elif k in ['directories', 'filesystem_checks', 'module_directory']: + tmpl_options[k] = v self.lookup = TemplateLookup(**tmpl_options) def load_template(self, templatename):