Changeset 13754 for main/waeup.aaue/trunk/src
- Timestamp:
- 1 Mar 2016, 05:56:02 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/applicants/utils.py
r13751 r13754 72 72 """Compose the titles in `AppCatCertificateSource`. 73 73 """ 74 return"%s / %s / %s (%s)" % (74 try: title = "%s / %s / %s (%s)" % ( 75 75 value.__parent__.__parent__.__parent__.code, 76 76 value.__parent__.__parent__.code, 77 value.code, value.title) 77 value.title, value.code) 78 except AttributeError: 79 title = "NA / %s (%s)" % (value.title, value.code) 80 return title
Note: See TracChangeset for help on using the changeset viewer.