[Zodb-checkins] SVN: ZODB/tags/3.10.0b7/setup.py Support latin-1 in long description.

Jim Fulton jim at zope.com
Tue Sep 28 13:24:22 EDT 2010


Log message for revision 117020:
  Support latin-1 in long description.
  

Changed:
  U   ZODB/tags/3.10.0b7/setup.py

-=-
Modified: ZODB/tags/3.10.0b7/setup.py
===================================================================
--- ZODB/tags/3.10.0b7/setup.py	2010-09-28 17:12:58 UTC (rev 117019)
+++ ZODB/tags/3.10.0b7/setup.py	2010-09-28 17:24:21 UTC (rev 117020)
@@ -183,7 +183,7 @@
         "\n".join(doclines[2:]) + "\n\n" +
         ".. contents::\n\n" + 
         read_file("README.txt")  + "\n\n" +
-        read_file("src", "CHANGES.txt")),
+        read_file("src", "CHANGES.txt")).decode('latin-1'),
       test_suite="__main__.alltests", # to support "setup.py test"
       tests_require = ['zope.testing', 'manuel'],
       extras_require = dict(test=['zope.testing', 'manuel']),



More information about the Zodb-checkins mailing list