Changeset 15549 for main/waeup.kofa/trunk/src/waeup/kofa
- Timestamp:
- 19 Aug 2019, 11:21:36 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/interfaces.py
r15548 r15549 113 113 appcats_dict = getUtility( 114 114 IApplicantsUtils).APP_TYPES_DICT 115 return sorted(appcats_dict.keys()) 115 return sorted([item[0] for item in appcats_dict.items()], 116 key=lambda value: value[1]) 116 117 117 118 def getToken(self, context, value):
Note: See TracChangeset for help on using the changeset viewer.