[Buildbot-commits] buildbot/buildbot/steps python.py,1.1,1.2
Brian Warner
warner at users.sourceforge.net
Mon Sep 18 20:35:42 UTC 2006
Update of /cvsroot/buildbot/buildbot/buildbot/steps
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv9489/buildbot/steps
Modified Files:
python.py
Log Message:
[project @ steps.python: fix import of StringIO]
Original author: warner at lothar.com
Date: 2006-09-18 20:29:12
Index: python.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/steps/python.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- python.py 15 Sep 2006 14:50:09 -0000 1.1
+++ python.py 18 Sep 2006 20:35:40 -0000 1.2
@@ -4,9 +4,9 @@
try:
import cStringIO
- StringIO = cStringIO
+ StringIO = cStringIO.StringIO
except ImportError:
- import StringIO
+ from StringIO import StringIO
class BuildEPYDoc(ShellCommand):
More information about the Commits
mailing list