[Buildbot-commits] buildbot/buildbot/process step.py,1.55,1.56
Brian Warner
warner at users.sourceforge.net
Thu Oct 28 07:25:33 UTC 2004
Update of /cvsroot/buildbot/buildbot/buildbot/process
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25586/buildbot/process
Modified Files:
step.py
Log Message:
(LoggedRemoteCommand.__repr__): avoid a python-2.4 warning
Index: step.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/process/step.py,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -d -r1.55 -r1.56
--- step.py 23 Sep 2004 20:46:50 -0000 1.55
+++ step.py 28 Oct 2004 07:25:30 -0000 1.56
@@ -171,7 +171,7 @@
rc = None
def __repr__(self):
- return "<RemoteCommand '%s' at 0x%x>" % (self.remote_command, id(self))
+ return "<RemoteCommand '%s' at %d>" % (self.remote_command, id(self))
def useLog(self, loog, closeWhenFinished=False):
self.log = loog
More information about the Commits
mailing list