Changeset 7237 for main/waeup.sirp/trunk/src/waeup/sirp
- Timestamp:
- 29 Nov 2011, 05:35:38 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser.py
r7224 r7237 439 439 # If application has ended and applicant record doesn't exist, 440 440 # logout without marking AC as used 441 if not pin in self.context.keys() and ( 442 self.context.enddate < date.today()):441 if not pin in self.context.keys() and (not self.context.enddate or 442 self.context.enddate < date.today()): 443 443 self.flash('Application has ended.') 444 444 auth = getUtility(IAuthentication)
Note: See TracChangeset for help on using the changeset viewer.