Changeset 14424 for main/waeup.kofa/trunk/src/waeup/kofa/utils/batching.py
- Timestamp:
- 21 Jan 2017, 13:46:55 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/utils/batching.py
r13159 r14424 289 289 """ 290 290 for value in row.values(): 291 if value.strip() and not value in (None, IGNORE_MARKER):291 if not value in (None, IGNORE_MARKER) and value.strip(): 292 292 return False 293 293 return True
Note: See TracChangeset for help on using the changeset viewer.