use external (relative) address only for comparison
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@1844 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
parent
56ae346777
commit
87d60fd415
1 changed files with 2 additions and 1 deletions
|
@ -64,7 +64,8 @@ class ExternalCollectionAdapter(AdapterBase):
|
|||
|
||||
def update(self):
|
||||
existing = self.context.getResources()
|
||||
old = dict((adapted(obj).uniqueAddress, obj) for obj in existing)
|
||||
#old = dict((adapted(obj).uniqueAddress, obj) for obj in existing)
|
||||
old = dict((adapted(obj).externalAddress, obj) for obj in existing)
|
||||
new = []
|
||||
oldFound = []
|
||||
provider = component.getUtility(IExternalCollectionProvider,
|
||||
|
|
Loading…
Add table
Reference in a new issue