Changeset 15634 for main/waeup.kofa/trunk/src/waeup/kofa
- Timestamp:
- 3 Oct 2019, 15:48:17 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py
r15584 r15634 1180 1180 return 1181 1181 1182 def dataNotComplete(self ):1182 def dataNotComplete(self, data): 1183 1183 if self.context.__parent__.with_picture: 1184 1184 store = getUtility(IExtFileStore) … … 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( ):1250 self.flash(self.dataNotComplete( ), type='danger')1249 if self.dataNotComplete(data): 1250 self.flash(self.dataNotComplete(data), type='danger') 1251 1251 return 1252 1252 self.applyData(self.context, **data)
Note: See TracChangeset for help on using the changeset viewer.