--- OSAS/OSA_system/archive.py 2003/10/13 22:24:35 1.2 +++ OSAS/OSA_system/archive.py 2003/12/18 17:22:29 1.3 @@ -532,11 +532,11 @@ class metacheck(Implicit, Persistent, Ro self.lines=[] 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())])) else: 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())])) security.declarePublic('messages')