hotfix: plus is fine in tag

This commit is contained in:
Louis Abel 2023-06-27 19:03:51 -07:00
parent 377c9e859f
commit ad2c828060
Signed by: label
GPG Key ID: 3331F061D1D9990E

View File

@ -82,7 +82,7 @@ def safe_encoding(data: str) -> str:
"""
Does url quoting for safe encoding
"""
quoter = urlquote(data)
quoter = urlquote(data, safe='/+')
# the urllib library currently doesn't reserve this
quoter = quoter.replace('~', '%7e')
return quoter