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