summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/contrib/formtools/wizard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/formtools/wizard.py b/django/contrib/formtools/wizard.py
index 427623dc33..02d8fd71d4 100644
--- a/django/contrib/formtools/wizard.py
+++ b/django/contrib/formtools/wizard.py
@@ -34,7 +34,7 @@ class FormWizard(object):
self.initial = initial or {}
# Dictionary of extra template context variables.
- extra_context = {}
+ self.extra_context = {}
# A zero-based counter keeping track of which step we're in.
self.step = 0