Ignore:
Timestamp:
19 Nov 2011, 17:56:03 (13 years ago)
Author:
Henrik Bettermann
Message:

Change some function names according to the style guide:

Function names should be lowercase, with words separated by underscores as necessary to improve readability.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser.py

    r7136 r7145  
    797797    title = u'Your Application Form'
    798798
    799     def emitLockMessage(self):
     799    def emit_lock_message(self):
    800800        self.flash('The requested form is locked (read-only).')
    801801        self.redirect(self.url(self.context))
     
    804804    def update(self):
    805805        if self.context.locked:
    806             self.emitLockMessage()
     806            self.emit_lock_message()
    807807            return
    808808        datepicker.need() # Enable jQuery datepicker in date fields.
Note: See TracChangeset for help on using the changeset viewer.