Ticket #13951: fix_doc_string_typo.diff
File fix_doc_string_typo.diff, 579 bytes (added by , 14 years ago) |
---|
-
wizard.py
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)