From 860548bc3075df0a4ae6b2d161654d878832e071 Mon Sep 17 00:00:00 2001 From: lethliel Date: Thu, 16 May 2019 13:06:21 +0200 Subject: [PATCH] fix getbinaries in commandline (progress_meter) change progress_meter = opts.quiet to progress_meter = not opts.quiet --- osc/commandline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/commandline.py b/osc/commandline.py index 6749d1df..05faaac1 100644 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -7289,7 +7289,7 @@ Please submit there instead, or use --nodevelproject to force direct submission. package = pac, target_filename = fname, target_mtime = i.mtime, - progress_meter = opts.quiet) + progress_meter = not opts.quiet) @cmdln.option('-b', '--bugowner', action='store_true',