diff options
author | Mike Gilbert <floppym@gentoo.org> | 2014-03-22 21:26:47 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2014-03-22 21:26:47 +0000 |
commit | 521f678d447372b396f592abd3a8b66d7103bc7a (patch) | |
tree | f6a944e104dc212386ee7523e3d1a21e9c0c3c2e /dev-python/pytz/files | |
parent | mask dissy for removal (diff) | |
download | gentoo-2-521f678d447372b396f592abd3a8b66d7103bc7a.tar.gz gentoo-2-521f678d447372b396f592abd3a8b66d7103bc7a.tar.bz2 gentoo-2-521f678d447372b396f592abd3a8b66d7103bc7a.zip |
Upstream already fixed the encoding issue by removing the non-ASCII character from README.txt. Bug 504778.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Diffstat (limited to 'dev-python/pytz/files')
-rw-r--r-- | dev-python/pytz/files/pytz-2014.1-setup.py.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/dev-python/pytz/files/pytz-2014.1-setup.py.patch b/dev-python/pytz/files/pytz-2014.1-setup.py.patch deleted file mode 100644 index 646260987fb5..000000000000 --- a/dev-python/pytz/files/pytz-2014.1-setup.py.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/setup.py -+++ b/setup.py -@@ -2,7 +2,7 @@ - pytz setup script - ''' - --import pytz, sys, os, os.path -+import pytz, sys, os, os.path, io - - try: - from setuptools import setup -@@ -27,7 +27,7 @@ - version=pytz.VERSION, - zip_safe=True, - description='World timezone definitions, modern and historical', -- long_description=open('README.txt','r').read(), -+ long_description=io.open('README.txt','r',encoding='utf8').read(), - author=me, - author_email=memail, - maintainer=me, |