From 17c466a57bb6dc94a404af3fec24ef1c9f4a4e31 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Mon, 1 Mar 2010 23:59:22 +0000 Subject: [PATCH] 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 --- 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 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