Commit e9d21af7 authored by Sebastien Robin's avatar Sebastien Robin

another changed to make sure all objects are deleted in resetSignature


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@1284 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent d99390b9
......@@ -986,8 +986,9 @@ class Subscription(Folder, SyncCode):
Reset all signatures
"""
#self.signatures = PersistentMapping()
for id in self.objectIds():
self._delObject(id)
while len(self.objectIds())>0:
for id in self.objectIds():
self._delObject(id)
def getGidList(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment