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

MAITN: make selection of properties case insensitive

parent 6f5e7634
No related branches found
No related tags found
2 merge requests!178FIX: #96 Better error output for crawl.py script.,!167Sync Graph
......@@ -353,7 +353,7 @@ class IdentifiableAdapter(metaclass=ABCMeta):
# property
continue
options = [p.value for p in se.properties if p.name == prop.name]
options = [p.value for p in se.properties if p.name.lower() == prop.name.lower()]
if len(options) == 0:
raise MissingIdentifyingProperty(
f"The following record is missing an identifying property:\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment