Compare commits

..

2 commits

Author SHA1 Message Date
f8480b0b4a beautify pyproject.toml 2025-02-23 10:36:07 +01:00
de93eec9b2 Python3 fix: do not encode mail messages 2025-02-23 10:31:09 +01:00
2 changed files with 2 additions and 2 deletions

View file

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

View file

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