Skip to content
Snippets Groups Projects
Commit b0abb362 authored by florian's avatar florian
Browse files

FIX: Typo in error message

parent 5b49748b
No related branches found
No related tags found
1 merge request!160STY: styling
Pipeline #40889 passed
......@@ -407,12 +407,12 @@ class Crawler(object):
if p.value.path != cached.path:
raise RuntimeError(
"The cached and the refernced entity are not identical.\n"
f"Cached:\n{cached}\nRefernced:\n{el}"
f"Cached:\n{cached}\nReferenced:\n{el}"
)
else:
raise RuntimeError(
"The cached and the refernced entity are not identical.\n"
f"Cached:\n{cached}\nRefernced:\n{el}"
f"Cached:\n{cached}\nReferenced:\n{el}"
)
lst.append(cached)
else:
......@@ -428,12 +428,12 @@ class Crawler(object):
if p.value.path != cached.path:
raise RuntimeError(
"The cached and the refernced entity are not identical.\n"
f"Cached:\n{cached}\nRefernced:\n{p.value}"
f"Cached:\n{cached}\nReferenced:\n{p.value}"
)
else:
raise RuntimeError(
"The cached and the refernced entity are not identical.\n"
f"Cached:\n{cached}\nRefernced:\n{p.value}"
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