diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-11-29 16:11:24 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-11-29 16:12:10 +0100 |
commit | 49286faa3f99ccf6990ad651208188eb1d817061 (patch) | |
tree | f9cbf86cd0c96848d942ad0a890075d52a43c76f /python/Python-2.6.1-py4768.patch | |
parent | cf545e15fb4fa91f600c807e3418a7bc7e4f3dd5 (diff) |
python: replaced by python3, so remove it
Change-Id: I3dc55f05502af56bd30825d297a6964295e6efa3
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' - |