Skip to content
Snippets Groups Projects
Verified Commit 2643f596 authored by Daniel Hornung's avatar Daniel Hornung
Browse files

MAINT Typos.

parent 9070a972
Branches
Tags
2 merge requests!160STY: styling,!157FIX Yet another corner case of referencing resolution resolved
Pipeline #47727 failed
......@@ -561,12 +561,12 @@ class Crawler(object):
if isinstance(p.value, db.File):
if p.value.path != cached.path:
raise RuntimeError(
"The cached and the refernced entity are not identical.\n"
"The cached and the referenced entity are not identical.\n"
f"Cached:\n{cached}\nReferenced:\n{el}"
)
else:
raise RuntimeError(
"The cached and the refernced entity are not identical.\n"
"The cached and the referenced entity are not identical.\n"
f"Cached:\n{cached}\nReferenced:\n{el}"
)
lst.append(cached)
......@@ -583,12 +583,12 @@ class Crawler(object):
if isinstance(p.value, db.File):
if p.value.path != cached.path:
raise RuntimeError(
"The cached and the refernced entity are not identical.\n"
"The cached and the referenced entity are not identical.\n"
f"Cached:\n{cached}\nReferenced:\n{p.value}"
)
else:
raise RuntimeError(
"The cached and the refernced entity are not identical.\n"
"The cached and the referenced entity are not identical.\n"
f"Cached:\n{cached}\nReferenced:\n{p.value}"
)
p.value = cached
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment