Skip to content
Snippets Groups Projects
Verified Commit 8e121bbc authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

model.identifiers: Fix one space too many in error message

Related to T2729
parent 559a283c
No related branches found
Tags v0.8.0
No related merge requests found
...@@ -857,7 +857,7 @@ def parse_swhid(swhid: str) -> SWHID: ...@@ -857,7 +857,7 @@ def parse_swhid(swhid: str) -> SWHID:
except Exception: except Exception:
raise ValidationError( raise ValidationError(
"Invalid SWHID: contextual data must be a ;-separated list of " "Invalid SWHID: contextual data must be a ;-separated list of "
" key=value pairs" "key=value pairs"
) )
wrong_qualifiers = set(_metadata) - set(CONTEXT_QUALIFIERS) wrong_qualifiers = set(_metadata) - set(CONTEXT_QUALIFIERS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment