This commit is contained in:
Kovid Goyal 2023-01-06 14:26:15 +05:30
parent 1b5fac3189
commit def35078d1
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -1102,7 +1102,7 @@ def sanitize_url_for_dispay_to_user(url: str) -> str:
purl = purl._replace(path=unquote(purl.path))
url = urlunparse(purl)
except Exception:
url = 'Unpareseable URL: ' + url
url = 'Unparseable URL: ' + url
return url