[svn r38034] i think the rsync roots should be shown absolute
--HG-- branch : trunk
This commit is contained in:
parent
ce498a1504
commit
1d4a46d46a
|
@ -85,10 +85,9 @@ class AbstractReporter(object):
|
||||||
self.out.sep("=", txt)
|
self.out.sep("=", txt)
|
||||||
self.timestart = item.timestart
|
self.timestart = item.timestart
|
||||||
self.out.write("local top directory: %s\n" % item.topdir)
|
self.out.write("local top directory: %s\n" % item.topdir)
|
||||||
roots = [str(i.relto(item.topdir)) for i in item.roots]
|
for i, root in py.builtin.enumerate(item.roots):
|
||||||
for i, root in py.builtin.enumerate(roots):
|
outof = "%d/%d" %(i+1, len(item.roots))
|
||||||
outof = "%d/%d" %(i+1, len(roots))
|
self.out.write("local RSync root [%s]: %s\n" %
|
||||||
self.out.write("local RSync root [%s] %s\n" %
|
|
||||||
(outof, root))
|
(outof, root))
|
||||||
|
|
||||||
def report_RsyncFinished(self, item):
|
def report_RsyncFinished(self, item):
|
||||||
|
|
Loading…
Reference in New Issue