--- OSAS/OSA_system/OSAS_archiver.py 2004/01/07 15:29:01 1.8 +++ OSAS/OSA_system/OSAS_archiver.py 2004/01/08 17:00:39 1.9 @@ -34,7 +34,9 @@ class OSAS_archiveInbox(SimpleItem,Persi def addPath(self,path,RESPONSE=None): """add a path""" today=time.localtime() - self.pathes.append([path,today]) + temp=self.pathes[0:] + temp.append([path,today]) + self.pathes=temp[0:] if RESPONSE: RESPONSE.redirect("index_html")