summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/core/template.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/django/core/template.py b/django/core/template.py
index e727e3e5fa..35b557bbfb 100644
--- a/django/core/template.py
+++ b/django/core/template.py
@@ -122,7 +122,8 @@ def compile_string(template_string):
class Context:
"A stack container for variable context"
- def __init__(self, dict={}):
+ def __init__(self, dict=None):
+ dict = dict or {}
self.dicts = [dict]
def __repr__(self):