- Timestamp:
- 05/19/09 15:31:19 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
collective.imstransport/trunk/collective/imstransport/utilities/imsinterchange.py
r202 r207 57 57 implements(IIMSManifestWriter) 58 58 59 def _writeObjectData(self, obj, path ):59 def _writeObjectData(self, obj, path, destination): 60 60 """ Write file data to the destination object. """ 61 61 if type(obj) == type(''): … … 74 74 data = '' 75 75 76 if self.destination:77 self.destination.writeFile(path, data)76 if destination: 77 destination.writeFile(path, data) 78 78 79 79 def _getAllObjects(self, context):
Note: See TracChangeset
for help on using the changeset viewer.
