Skip to content
Snippets Groups Projects
Commit e6f1b85e authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

minor

parent ad092932
No related branches found
No related tags found
2 merge requests!178FIX: #96 Better error output for crawl.py script.,!167Sync Graph
Pipeline #51530 passed with warnings
...@@ -560,8 +560,8 @@ class SyncGraph: ...@@ -560,8 +560,8 @@ class SyncGraph:
# update reference mappings # update reference mappings
for setA, setB in ( for setA, setB in (
(self.forward_references, self.backward_references), (self.forward_references, self.backward_references), # ref: source -> other
(self.backward_references, self.forward_references), (self.backward_references, self.forward_references), # ref: other -> source
(self.forward_references_id_props, self.backward_references_id_props), (self.forward_references_id_props, self.backward_references_id_props),
(self.backward_references_id_props, self.forward_references_id_props), (self.backward_references_id_props, self.forward_references_id_props),
(self.forward_references_backref, self.backward_references_backref), (self.forward_references_backref, self.backward_references_backref),
...@@ -608,7 +608,7 @@ class SyncGraph: ...@@ -608,7 +608,7 @@ class SyncGraph:
if id(source) in self._missing and id(target) not in self._missing: if id(source) in self._missing and id(target) not in self._missing:
self._mark_missing(target) self._mark_missing(target)
if id(source) in self._existing and id(target) not in self._existing: elif id(source) in self._existing and id(target) not in self._existing:
self._mark_existing(target) self._mark_existing(target)
# due to the merge it might now be possible to create an identifiable # due to the merge it might now be possible to create an identifiable
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment