From 5f70a728767236a18b8effaa120e2218b7307c9b Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Tue, 2 Mar 2010 00:00:08 +0000 Subject: [PATCH] [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 --- django/contrib/formtools/wizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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