fixes handling of safe URIs

This commit is contained in:
Ronald Steinke 2018-01-10 10:05:07 +01:00
parent 2b2a6c1022
commit 7a91493597

@ -27,7 +27,7 @@ aplus.log_error = log_error
def uri_safe(s):
return quote(s.replace("/", "_"))
return quote(s.replace("/", "_"), safe='~')
def is_text_content(mimetype):