[py-svn] r37035 - py/dist/py/apigen/source/testing

cfbolz at codespeak.net cfbolz at codespeak.net
Fri Jan 19 19:08:21 CET 2007


Author: cfbolz
Date: Fri Jan 19 19:08:19 2007
New Revision: 37035

Modified:
   py/dist/py/apigen/source/testing/test_html.py
Log:
no genexps in 2.3


Modified: py/dist/py/apigen/source/testing/test_html.py
==============================================================================
--- py/dist/py/apigen/source/testing/test_html.py	(original)
+++ py/dist/py/apigen/source/testing/test_html.py	Fri Jan 19 19:08:19 2007
@@ -77,7 +77,7 @@
         if doc is None:
             doc = HTMLDocument()
         l = doc.prepare_line(line)
-        return ''.join(unicode(i) for i in l)
+        return ''.join([unicode(i) for i in l])
 
     def test_prepare_line_basic(self):
         result = self.prepare_line(['see if this works'])


More information about the py-svn mailing list