From 35770175fd1447dabe84c6f1273bfd5f5db7b0d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com> Date: Thu, 30 May 2024 10:30:28 +0200 Subject: [PATCH] fix --- src/caoscrawler/sync_node.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/caoscrawler/sync_node.py b/src/caoscrawler/sync_node.py index 3daf7826..811c7445 100644 --- a/src/caoscrawler/sync_node.py +++ b/src/caoscrawler/sync_node.py @@ -117,7 +117,10 @@ class SyncNode: raise ImpossibleMergeError( f"Trying to update {attr} but this would lead to an " f"override of the value '{self.__getattribute__(attr)}' " - f"by the value '{other.__getattribute__(attr)}'") + f"by the value '{other.__getattribute__(attr)}'", + pname=attr, values=(self.__getattribute__(attr), + other.__getattribute__(attr)) + ) for p in other.parents: if not parent_in_list(p, self.parents): self.parents.append(p) -- GitLab