aboutsummaryrefslogtreecommitdiff
path: root/devel/py-xmltodict/files/patch-setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'devel/py-xmltodict/files/patch-setup.py')
-rw-r--r--devel/py-xmltodict/files/patch-setup.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/devel/py-xmltodict/files/patch-setup.py b/devel/py-xmltodict/files/patch-setup.py
deleted file mode 100644
index 416bb1f917c4..000000000000
--- a/devel/py-xmltodict/files/patch-setup.py
+++ /dev/null
@@ -1,13 +0,0 @@
---- setup.py.orig 2019-02-11 06:36:33 UTC
-+++ setup.py
-@@ -8,8 +8,8 @@ except ImportError:
-
- import xmltodict
-
--with open('README.md') as f:
-- long_description = f.read()
-+with open('README.md', 'rb') as f:
-+ long_description = f.read().decode('utf-8')
-
-
- setup(name='xmltodict',