From 9e72e088a5007d55e8b3f5e982e3c52c855feffc Mon Sep 17 00:00:00 2001 From: Marko Kreen Date: Thu, 20 Jun 2013 00:17:04 +0300 Subject: [PATCH] londiste: fix multi -v passing --- python/londiste/playback.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/londiste/playback.py b/python/londiste/playback.py index b04ad317..8d0b2a94 100644 --- a/python/londiste/playback.py +++ b/python/londiste/playback.py @@ -874,7 +874,8 @@ class Replicator(CascadedWorker): # pass same verbosity options as main script got if self.options.quiet: cmd.append('-q') - cmd += self.options.verbose * ['-v'] + if self.options.verbose: + cmd += ['-v'] * self.options.verbose # let existing copy finish and clean its pidfile, # otherwise new copy will exit immediately. -- 2.39.5