Changeset 9175 for main/waeup.kofa/branches/uli-async-update/src
- Timestamp:
- 13 Sep 2012, 11:12:59 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/branches/uli-async-update/src/waeup/kofa/utils/batching.py
r9169 r9175 518 518 519 519 The resulting CSV file will be stored in a new temporary directory 520 (using :func:`tempfile.mkdtemp`). 520 (using :func:`tempfile.mkdtemp`). It will be named after the 521 exporter used with `.csv` filename extension. 521 522 522 523 Returns the path to the created CSV file. … … 528 529 exporter = getUtility(ICSVExporter, name=exporter_name) 529 530 output_dir = tempfile.mkdtemp() 530 output_path = os.path.join(output_dir, 'export.csv') 531 filename = '%s.csv' % exporter_name 532 output_path = os.path.join(output_dir, filename) 531 533 exporter.export_all(site, filepath=output_path) 532 534 return output_path
Note: See TracChangeset for help on using the changeset viewer.