Changeset 7860 for main/waeup.kofa/trunk/src
- Timestamp:
- 13 Mar 2012, 01:19:23 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/utils/batching.py
r7859 r7860 22 22 """ 23 23 import grok 24 import copy25 24 import csv 26 25 import os 27 import sys28 26 import tempfile 29 27 import time … … 33 31 from zope.schema import getFields 34 32 from waeup.kofa.interfaces import ( 35 IBatchProcessor, FatalCSVError, DuplicationError,IObjectConverter,33 IBatchProcessor, FatalCSVError, IObjectConverter, 36 34 ICSVExporter) 37 35 … … 96 94 @property 97 95 def available_fields(self): 98 result = []99 96 return sorted(list(set( 100 97 self.location_fields + getFields(self.iface).keys())))
Note: See TracChangeset for help on using the changeset viewer.