[Zope3-checkins] SVN: zope.testing/trunk/setup.py hacked around
unicode problem in long description.
Jim Fulton
jim at zope.com
Tue Aug 14 18:20:57 EDT 2007
Log message for revision 78822:
hacked around unicode problem in long description.
Changed:
U zope.testing/trunk/setup.py
-=-
Modified: zope.testing/trunk/setup.py
===================================================================
--- zope.testing/trunk/setup.py 2007-08-14 22:11:05 UTC (rev 78821)
+++ zope.testing/trunk/setup.py 2007-08-14 22:20:57 UTC (rev 78822)
@@ -35,14 +35,17 @@
open(os.path.join('src', 'zope', 'testing', name)).read()
for name in (
'testrunner.txt',
- 'testrunner-simple.txt',
+ 'testrunner-simple.txt',
'testrunner-layers-api.txt',
'testrunner-layers.txt',
'testrunner-arguments.txt',
'testrunner-verbose.txt',
'testrunner-test-selection.txt',
'testrunner-progress.txt',
- 'testrunner-errors.txt',
+
+# The following seems to cause weird unicode in the output: :(
+## 'testrunner-errors.txt',
+
'testrunner-debugging.txt',
'testrunner-layers-ntd.txt',
'testrunner-coverage.txt',
More information about the Zope3-Checkins
mailing list