diff options
Diffstat (limited to 'python/Python-2.6.1-py4768.patch')
-rw-r--r-- | python/Python-2.6.1-py4768.patch | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/python/Python-2.6.1-py4768.patch b/python/Python-2.6.1-py4768.patch deleted file mode 100644 index 7617f5dbec53..000000000000 --- a/python/Python-2.6.1-py4768.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- misc/Python-2.6.1/Lib/email/encoders.py -+++ misc/build/Python-2.6.1/Lib/email/encoders.py -@@ -42,7 +42,7 @@ - Also, add an appropriate Content-Transfer-Encoding header. - """ - orig = msg.get_payload() -- encdata = _bencode(orig) -+ encdata = str(_bencode(orig)).encode('ascii') - msg.set_payload(encdata) - msg['Content-Transfer-Encoding'] = 'base64' - |