[svn r63158] UI improvements

--HG--
branch : trunk
This commit is contained in:
hpk
2009-03-20 22:13:47 +01:00
parent 69e68bed29
commit 1b3384b7bd
4 changed files with 10 additions and 9 deletions
+4 -1
View File
@@ -89,7 +89,10 @@ class TerminalReporter:
def pyevent_gwmanage_rsyncstart(self, source, gateways):
targets = ", ".join([gw.id for gw in gateways])
self.write_line("rsyncstart: %s -> %s" %(source, targets))
msg = "rsyncstart: %s -> %s" %(source, targets)
if not self.config.option.verbose:
msg += " # use --verbose to see rsync progress"
self.write_line(msg)
def pyevent_gwmanage_rsyncfinish(self, source, gateways):
targets = ", ".join([gw.id for gw in gateways])