[Python-modules-commits] [python-bcrypt] 08/15: fix README ascii decoding error

Daniel Stender stender at moszumanska.debian.org
Tue Jun 28 17:48:09 UTC 2016


This is an automated email from the git hooks/post-receive script.

stender pushed a commit to branch master
in repository python-bcrypt.

commit bfd87d69d993aabd320ee8d445aa92641ca625bc
Author: Daniel Stender <stender at debian.org>
Date:   Tue Jun 28 19:21:19 2016 +0200

    fix README ascii decoding error
    
    Easy fix for encoding error when build in non-utf8 enviroments.
    `encoding` isn't available as argument for open() in Python 2.7, so
    that can't be fixed with that keeping the long description text.
    Forwarded: not-needed
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 060e675..f9253c7 100644
--- a/setup.py
+++ b/setup.py
@@ -192,7 +192,7 @@ setup(
     version=__about__["__version__"],
 
     description=__about__["__summary__"],
-    long_description=open("README.rst").read(),
+    long_description='not available',
     url=__about__["__uri__"],
     license=__about__["__license__"],
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-bcrypt.git



More information about the Python-modules-commits mailing list