Show
Ignore:
Timestamp:
07/03/09 10:26:36 (3 years ago)
Author:
jon
Message:

Adding back old imports without transform

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • collective.imstransport/trunk/collective/imstransport/utilities/packagingio.py

    r160 r325  
    88        self.fullpath = package_path 
    99 
    10  
    11     def readManifest(self): 
     10    def readManifest(self, manifestfile='imsmanifest.xml'): 
    1211        """ Get the manifest file if it exists. """ 
    1312        manifest_path = os.path.join(self.fullpath, 'imsmanifest.xml') 
     
    3534        self.fullpath = '' 
    3635 
    37     def readManifest(self): 
     36    def readManifest(self, manifestfile='imsmanifest.xml'): 
    3837        """ Get the maifest file if it exists. """ 
    3938        for x in self.files.namelist(): 
    40             index = x.find('imsmanifest.xml') 
     39            index = x.find(manifestfile) 
    4140            if index != -1: 
    4241                self.fullpath = x[:index]