Compare commits

..

No commits in common. "f8480b0b4ad4d9764e2b7e0a1ad49401a0c74e5a" and "6232ba3ce06a7d8ed7af63c5f539b4d7324bda2b" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -52,5 +52,4 @@ class MailToAction(TargetAction):
except UnicodeEncodeError: except UnicodeEncodeError:
return '.' return '.'
s = s[:1000] s = s[:1000]
return urllib.parse.quote(''.join(s)) return urllib.parse.quote(''.join(enc(c) for c in s))
#return urllib.parse.quote(''.join(enc(c) for c in s))

View file

@ -20,6 +20,7 @@ dependencies = [
[project.optional-dependencies] [project.optional-dependencies]
jwt = ["python-jwt", "jwcrypto"] jwt = ["python-jwt", "jwcrypto"]
test = ["zope.testrunner"] test = ["zope.testrunner"]
[tool.setuptools] [tool.setuptools]