diff --git a/django/contrib/formtools/wizard.py b/django/contrib/formtools/wizard.py
index 02d8fd7..a57c34b 100644
a
|
b
|
class FormWizard(object):
|
48 | 48 | |
49 | 49 | def num_steps(self): |
50 | 50 | "Helper method that returns the number of steps." |
51 | | # You might think we should just set "self.form_list = len(form_list)" |
| 51 | # You might think we should just set "self.num_steps = len(form_list)" |
52 | 52 | # in __init__(), but this calculation needs to be dynamic, because some |
53 | 53 | # hook methods might alter self.form_list. |
54 | 54 | return len(self.form_list) |