Changeset 15628 for main/waeup.kofa/trunk/src/waeup/kofa/applicants
- Timestamp:
- 1 Oct 2019, 08:46:59 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/batching.py
r14804 r15628 27 27 from zope.catalog.interfaces import ICatalog 28 28 from waeup.kofa.interfaces import ( 29 IBatchProcessor, IObjectConverter, FatalCSVError, IGNORE_MARKER, 29 IBatchProcessor, IObjectConverter, FatalCSVError, 30 IGNORE_MARKER, DELETION_MARKER, 30 31 IObjectHistory, IUserAccount, DuplicationError) 31 32 from waeup.kofa.interfaces import MessageFactory as _ … … 243 244 row.pop('application_number') 244 245 245 # Update password246 # Update 246 247 if 'password' in row: 247 248 passwd = row.get('password', IGNORE_MARKER) … … 250 251 # already encrypted password 251 252 obj.password = passwd 253 elif passwd == DELETION_MARKER: 254 obj.password = None 252 255 else: 253 256 # not yet encrypted password
Note: See TracChangeset for help on using the changeset viewer.