Diff for /OSAS/OSA_system/archive.py between versions 1.2 and 1.3

version 1.2, 2003/10/13 22:24:35 version 1.3, 2003/12/18 17:22:29
Line 532  class metacheck(Implicit, Persistent, Ro Line 532  class metacheck(Implicit, Persistent, Ro
             self.lines=[]              self.lines=[]
                   
             if type(path)==StringType:              if type(path)==StringType:
             f = os.popen("/usr/local/mpiwg/archive/metacheck "+path,"r")              f = os.popen("/Users/dwinter/metacheck "+path,"r")
                 self.lines.append(Error([path,self.parsearchive(f.readlines())]))                  self.lines.append(Error([path,self.parsearchive(f.readlines())]))
         else:          else:
                 for singlepath in path:                  for singlepath in path:
                     f = os.popen("/usr/local/mpiwg/archive/metacheck "+singlepath,"r")                      f = os.popen("/Users/dwinter/metacheck "+singlepath,"r")
                     self.lines.append(Error([singlepath,self.parsearchive(f.readlines())]))                      self.lines.append(Error([singlepath,self.parsearchive(f.readlines())]))
         security.declarePublic('messages')          security.declarePublic('messages')
           

Removed from v.1.2  
changed lines
  Added in v.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>