Fixed a typo and removed a useless backslash
authorArmin Ronacher <armin.ronacher@active-4.com>
Mon, 29 Nov 2010 11:39:11 +0000 (12:39 +0100)
committerArmin Ronacher <armin.ronacher@active-4.com>
Mon, 29 Nov 2010 11:39:11 +0000 (12:39 +0100)
jinja2/environment.py
jinja2/sandbox.py

index 95ca10a86ab30e43c2bfcccbe53942261b157964..2dd38ef9fa797ec4d9b98b9a997fdaeec48ab273 100644 (file)
@@ -539,7 +539,7 @@ class Environment(object):
     def compile_templates(self, target, extensions=None, filter_func=None,
                           zip='deflated', log_function=None,
                           ignore_errors=True, py_compile=False):
-        """Compiles all the templates the loader can find, compiles them
+        """Finds all the templates the loader can find, compiles them
         and stores them in `target`.  If `zip` is `None`, instead of in a
         zipfile, the templates will be will be stored in a directory.
         By default a deflate zip algorithm is used, to switch to
index 55817be9d1a286986b761b45ab057c94cf92450c..0c9f573262f4b802676187f848d7fca851ca1137 100644 (file)
@@ -201,7 +201,7 @@ class SandboxedEnvironment(Environment):
         True.  Override this method to alter the behavior, but this won't
         affect the `unsafe` decorator from this module.
         """
-        return not (getattr(obj, 'unsafe_callable', False) or \
+        return not (getattr(obj, 'unsafe_callable', False) or
                     getattr(obj, 'alters_data', False))
 
     def getitem(self, obj, argument):