Changeset 9701 for main/waeup.kofa/trunk/src/waeup/kofa/university
- Timestamp:
- 20 Nov 2012, 11:16:38 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/university/batching.py
r9333 r9701 97 97 items_changed = '' 98 98 99 if row.has_key('local_roles')and row['local_roles'] not in (99 if 'local_roles' in row and row['local_roles'] not in ( 100 100 None, IGNORE_MARKER): 101 101 role_manager = IPrincipalRoleManager(obj) … … 133 133 errs, inv_errs, conv_dict = super( 134 134 FacultyProcessor, self).checkConversion(row, mode=mode) 135 if row.has_key('local_roles'):135 if 'local_roles' in row: 136 136 if row['local_roles'] in (None, DELETION_MARKER, IGNORE_MARKER): 137 137 return errs, inv_errs, conv_dict
Note: See TracChangeset for help on using the changeset viewer.