Changeset 9706 for main/waeup.kofa/trunk/src/waeup/kofa/utils
- Timestamp:
- 21 Nov 2012, 22:37:03 (12 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/utils
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/utils/batching.py
r9265 r9706 205 205 return None 206 206 207 def updateEntry(self, obj, row, site ):207 def updateEntry(self, obj, row, site, filename): 208 208 """Update obj to the values given in row. 209 209 … … 350 350 # student_ids and applicant_ids which have been 351 351 # generated in the respective __init__ methods before. 352 self.updateEntry(obj, row, site )352 self.updateEntry(obj, row, site, base) 353 353 try: 354 354 self.addEntry(obj, row, site) … … 387 387 failed_writer, string_row, update_errors) 388 388 continue 389 self.updateEntry(obj, row, site )389 self.updateEntry(obj, row, site, base) 390 390 finished_writer.writerow(string_row) 391 391 -
main/waeup.kofa/trunk/src/waeup/kofa/utils/batching.txt
r8330 r9706 218 218 ... stoneville[row['name']] = obj 219 219 ... 220 ... def updateEntry(self, obj, row, site ):220 ... def updateEntry(self, obj, row, site, filename): 221 221 ... # This is not strictly necessary, as the default 222 222 ... # updateEntry method does exactly the same
Note: See TracChangeset for help on using the changeset viewer.