Skip to content

Commit 5f70a72

Browse files
committed
[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
1 parent 60f4b7c commit 5f70a72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django/contrib/formtools/wizard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def __init__(self, form_list, initial=None):
3131
self.initial = initial or {}
3232

3333
# Dictionary of extra template context variables.
34-
extra_context = {}
34+
self.extra_context = {}
3535

3636
# A zero-based counter keeping track of which step we're in.
3737
self.step = 0

0 commit comments

Comments
 (0)