summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2010-03-02 00:00:08 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2010-03-02 00:00:08 +0000
commit5f70a728767236a18b8effaa120e2218b7307c9b (patch)
tree0f2d185c0858723e5a66ea8f65773f64a59af059
parent60f4b7c4a9243e0e9d5e2a1b441548dc0cb8727d (diff)
[1.1.X] Fixed a silly bug in [12644].
Backport of [12646]. Of course, this sort of thing *does* do wonders for my commit count. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12647 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-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 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