Changeset 14394 for main/waeup.kofa/trunk
- Timestamp:
- 13 Jan 2017, 13:10:33 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py
r14346 r14394 1460 1460 self.course_admitted = False 1461 1461 if course_admitted is not None: 1462 self.course_admitted = True 1463 self.longtitle = course_admitted.longtitle 1464 self.department = course_admitted.__parent__.__parent__.longtitle 1465 self.faculty = course_admitted.__parent__.__parent__.__parent__.longtitle 1462 try: 1463 self.course_admitted = True 1464 self.longtitle = course_admitted.longtitle 1465 self.department = course_admitted.__parent__.__parent__.longtitle 1466 self.faculty = course_admitted.__parent__.__parent__.__parent__.longtitle 1467 except AttributeError: 1468 self.flash(_('Application record invalid.'), type='warning') 1469 return 1466 1470 self.result = True 1467 1471 self.admitted = False
Note: See TracChangeset for help on using the changeset viewer.