- Timestamp:
- 3 Oct 2019, 20:51:02 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py
r15634 r15636 1247 1247 if self.upload_success is False: # False is not None! 1248 1248 return # error during image upload. Ignore other values 1249 if self.dataNotComplete(data): 1250 self.flash(self.dataNotComplete(data), type='danger') 1249 dnt = self.dataNotComplete(data) 1250 if dnt: 1251 self.flash(dnt, type='danger') 1251 1252 return 1252 1253 self.applyData(self.context, **data)
Note: See TracChangeset for help on using the changeset viewer.