Changeset 13204 for main/waeup.uniben/trunk/src/waeup/uniben/scripts.py
- Timestamp:
- 21 Aug 2015, 13:31:59 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/scripts.py
r13203 r13204 32 32 APP_NAME = "uniben" 33 33 34 #: The name under which the exporter to use is registered. 35 EXPORTER_NAME = "students" 34 36 35 37 def grok_bases(): … … 132 134 print(" Export %s-%s to %s (mem: %s)" % (start, end, path, mem1)) 133 135 tp1 = time.time() 134 exporter = getUtility(ICSVExporter, name= "students")136 exporter = getUtility(ICSVExporter, name=EXPORTER_NAME) 135 137 exporter.export(get_all_students(container, start, end), path) 136 138 tp2 = time.time()
Note: See TracChangeset for help on using the changeset viewer.