Commit 58c4aca3 authored by Chris Beaven's avatar Chris Beaven
Browse files

Remove reference to use_l10n which snuck in from a backport from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@15618 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 5baa06ec
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -89,8 +89,7 @@ class Context(BaseContext):

    def _new(self):
        return self.__class__(autoescape=self.autoescape,
                              current_app=self.current_app,
                              use_l10n=self.use_l10n)
                              current_app=self.current_app)

    def update(self, other_dict):
        "Like dict.update(). Pushes an entire dictionary's keys and values onto the context."
@@ -170,5 +169,4 @@ class RequestContext(Context):

    def _new(self):
        return self.__class__(request=HttpRequest(),
                              current_app=self.current_app,
                              use_l10n=self.use_l10n)
                              current_app=self.current_app)