diff options
| author | Jacob Kaplan-Moss <jacob@jacobian.org> | 2010-03-01 23:59:22 +0000 |
|---|---|---|
| committer | Jacob Kaplan-Moss <jacob@jacobian.org> | 2010-03-01 23:59:22 +0000 |
| commit | 17c466a57bb6dc94a404af3fec24ef1c9f4a4e31 (patch) | |
| tree | 96664a2db4fc415efda5145d8cd0aaee8320b7ce | |
| parent | 4c18facdf7d0f609cd7f3c72c142d7be7b14a6c9 (diff) | |
Fixed a silly bug in [12644].
Kids, please don't drink and code; the commit you save might be your own.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12646 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/formtools/wizard.py | 2 |
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 |
