From 479aa2e03f34709aabdd9effbffe135709961a99 Mon Sep 17 00:00:00 2001 From: hpk Date: Thu, 8 Feb 2007 20:10:58 +0100 Subject: [PATCH] [svn r38197] slight reporting fix --HG-- branch : trunk --- py/test/rsession/hostmanage.py | 2 +- py/test/rsession/reporter.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/py/test/rsession/hostmanage.py b/py/test/rsession/hostmanage.py index c22f578e6..971c8d342 100644 --- a/py/test/rsession/hostmanage.py +++ b/py/test/rsession/hostmanage.py @@ -95,7 +95,7 @@ class HostRSync(py.execnet.RSync): if host.hostname == "localhost" and remotepath == self._sourcedir: self._synced[key] = True synced = key in self._synced - reporter(repevent.HostRSyncing(host, self._sourcedir, + reporter(repevent.HostRSyncing(host, py.path.local(self._sourcedir), remotepath, synced)) def hostrsynced(host=host): reporter(repevent.HostRSyncRootReady(host, self._sourcedir)) diff --git a/py/test/rsession/reporter.py b/py/test/rsession/reporter.py index 8022be339..c88d3d31c 100644 --- a/py/test/rsession/reporter.py +++ b/py/test/rsession/reporter.py @@ -65,7 +65,7 @@ class AbstractReporter(object): hostrepr, item.remotepath) else: print "%15s: skip duplicate rsync to %r" % ( - hostrepr, str(item.root)) + hostrepr, item.root) else: print "%15s: rsync %r to remote %r" % (hostrepr, item.root.basename,