diff options
author | Marko Kreen | 2013-06-19 21:17:04 +0000 |
---|---|---|
committer | Marko Kreen | 2013-06-19 21:17:40 +0000 |
commit | 9e72e088a5007d55e8b3f5e982e3c52c855feffc (patch) | |
tree | ea6777529b6acd9688130218240a6289c62e6885 | |
parent | 9d2b2d30a1736548d40f17eff5f9f05faa32aaf1 (diff) |
londiste: fix multi -v passing
-rw-r--r-- | python/londiste/playback.py | 3 |
1 files changed, 2 insertions, 1 deletions
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. |