Skip to content
Snippets Groups Projects

FIX: compare_entities was not written for properties. raise error

Merged Henrik tom Wörden requested to merge f-fix-62 into dev
3 files
+ 13
14
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -81,7 +81,7 @@ NONE = "NONE"
SPECIAL_ATTRIBUTES = ["name", "role", "datatype", "description",
"id", "path", "checksum", "size"]
"id", "path", "checksum", "size", "value"]
class Entity:
@@ -154,7 +154,7 @@ class Entity:
# Copy special attributes:
# TODO: this might rise an exception when copying
# special file attributes like checksum and size.
for attribute in SPECIAL_ATTRIBUTES + ["value"]:
for attribute in SPECIAL_ATTRIBUTES:
val = getattr(self, attribute)
if val is not None:
setattr(new, attribute, val)
Loading