Changeset 13665 for main/waeup.kofa/trunk
- Timestamp:
- 8 Feb 2016, 17:13:42 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/students/utils.py
r13574 r13665 86 86 if text == 'None': 87 87 text = '' 88 # Very long matriculation numbers need to be wrapped 89 if text.find(' ') == -1 and len(text.split('/')) > 6: 90 text = '/'.join(text.split('/')[:5]) + \ 91 '/ ' + '/'.join(text.split('/')[5:]) 88 92 # Mainly for boolean values we need our customized 89 93 # localisation of the zope domain
Note: See TracChangeset for help on using the changeset viewer.