diff --git a/django/template/context.py b/django/template/context.py index 4aa454edce903..2f8e2200a8f3e 100644 --- a/django/template/context.py +++ b/django/template/context.py @@ -89,8 +89,7 @@ def __copy__(self): 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 @@ def __init__(self, request, dict=None, processors=None, current_app=None): def _new(self): return self.__class__(request=HttpRequest(), - current_app=self.current_app, - use_l10n=self.use_l10n) + current_app=self.current_app)