Skip to content
Snippets Groups Projects
Commit e24d0727 authored by Florian Spreckelsen's avatar Florian Spreckelsen
Browse files

FIX: Use correct identifiable in error message

parent 2d83ba27
Branches
Tags
2 merge requests!178FIX: #96 Better error output for crawl.py script.,!167Sync Graph
...@@ -103,8 +103,8 @@ class SyncNode: ...@@ -103,8 +103,8 @@ class SyncNode:
"The SyncNode that is used with update must have an equivalent" "The SyncNode that is used with update must have an equivalent"
f" identifiable. I.e. you cannot merge entities with differing identifiables" f" identifiable. I.e. you cannot merge entities with differing identifiables"
"The identifiables where:\n" "The identifiables where:\n"
f"{Identifiable._create_hashable_string(self)}\n" f"{self.identifiable._create_hashable_string(self.identifiable)}\n"
f"and\n{Identifiable._create_hashable_string(other)}." f"and\n{other.identifiable._create_hashable_string(other.identifiable)}."
) )
if other.identifiable: if other.identifiable:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment