Python3 fix: do not encode mail messages
This commit is contained in:
parent
6232ba3ce0
commit
de93eec9b2
1 changed files with 2 additions and 1 deletions
|
@ -52,4 +52,5 @@ class MailToAction(TargetAction):
|
||||||
except UnicodeEncodeError:
|
except UnicodeEncodeError:
|
||||||
return '.'
|
return '.'
|
||||||
s = s[:1000]
|
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))
|
||||||
|
|
Loading…
Add table
Reference in a new issue