[Buildbot-commits] buildbot/buildbot/slave commands.py,1.23,1.24

Brian Warner warner at users.sourceforge.net
Wed Apr 20 20:13:27 UTC 2005


Update of /cvsroot/buildbot/buildbot/buildbot/slave
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25684/buildbot/slave

Modified Files:
	commands.py 
Log Message:
* buildbot/slave/commands.py (ShellCommand.__init__): use os.pathsep

* buildbot/test/test_web.py (WebTest.test_webPortnum): add timeout
(WebTest.test_webPathname): same
(WebTest.test_webPathname_port): same
(WebTest.test_waterfall): use the default favicon rather than rooting around
the filesystem for it. Open the expected-icon file in binary mode, to make
win32 tests happier (thanks to Nick Trout for the catch)
* buildbot/status/html.py (buildbot_icon): win32 portability


Index: commands.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/slave/commands.py,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- commands.py	19 Apr 2005 08:22:43 -0000	1.23
+++ commands.py	20 Apr 2005 20:13:25 -0000	1.24
@@ -99,7 +99,7 @@
                 # ones. This will break if you send over empty strings, so
                 # don't do that.
                 environ['PYTHONPATH'] = (environ['PYTHONPATH']
-                                         + ":"
+                                         + os.pathsep
                                          + self.environ['PYTHONPATH'])
                 # this will proceed to replace the old one
             self.environ.update(environ)





More information about the Commits mailing list