Ticket #13951: fix_doc_string_typo.diff

File fix_doc_string_typo.diff, 579 bytes (added by Satoru Logic, 14 years ago)
  • wizard.py

     
    4848
    4949    def num_steps(self):
    5050        "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)"
    5252        # in __init__(), but this calculation needs to be dynamic, because some
    5353        # hook methods might alter self.form_list.
    5454        return len(self.form_list)
Back to Top