Compare commits
No commits in common. "f8480b0b4ad4d9764e2b7e0a1ad49401a0c74e5a" and "6232ba3ce06a7d8ed7af63c5f539b4d7324bda2b" have entirely different histories.
f8480b0b4a
...
6232ba3ce0
2 changed files with 2 additions and 2 deletions
|
@ -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))
|
|
||||||
|
|
|
@ -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]
|
||||||
|
|
Loading…
Add table
Reference in a new issue