From a068fe76ec7ad2fe3fdd1957d55f587bb7eb6f86 Mon Sep 17 00:00:00 2001 From: Bogdano Arendartchuk Date: Fri, 20 Jun 2008 22:20:07 +0000 Subject: Use --out-format instead of --log-format for rsync After rsync 2.6.9 the option --log-format has been renamed to --out-format and the alias has been dropped after 3.0.0. --- RepSys/binrepo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RepSys/binrepo.py b/RepSys/binrepo.py index 9fbd19e..54ca967 100644 --- a/RepSys/binrepo.py +++ b/RepSys/binrepo.py @@ -25,7 +25,7 @@ class ChecksumError(Error): def copy_rsync(sources, dest, sourcehost=None, desthost=None, archive=False, recurse=False): """Simple inteface for rsync""" - args = ["rsync", "-i", "--log-format=\"%i %n\""] + args = ["rsync", "-i", "--out-format=\"%i %n\""] if archive: args.append("-a") if recurse: -- cgit v1.2.1