Fixes a spelling error in the message

This commit is contained in:
Trenton H
2023-12-29 14:24:53 -08:00
committed by GitHub
parent c626e96f0f
commit a0e2b1f733

View File

@@ -19,7 +19,7 @@ def uri_validator(value) -> None:
)
elif not parts.netloc and not parts.path:
raise ValidationError(
_(f"Unable to parse URI {value}, missing net loction or path"),
_(f"Unable to parse URI {value}, missing net location or path"),
params={"value": value},
)
except Exception as e: