diff --git a/django/contrib/formtools/wizard.py b/django/contrib/formtools/wizard.py index 324acbe61c..147b3aaf4f 100644 --- a/django/contrib/formtools/wizard.py +++ b/django/contrib/formtools/wizard.py @@ -31,7 +31,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