From ae9e61a4551c893e553b00230c2f21822b970a57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Fri, 19 Aug 2016 06:08:58 +0200 Subject: [PATCH] avocado.plugins.multiplex: Change the `system-wide` shortcut MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The shortcut `-s` used for `--system-wide` clashes with `--silent|-s` from the main apps arguments, disabling the output. This is the argparse limitation so let's just remove the shortcut and let users use the full argument instead. Signed-off-by: Lukáš Doktor --- avocado/plugins/multiplex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avocado/plugins/multiplex.py b/avocado/plugins/multiplex.py index 098630c7..bfd95afa 100644 --- a/avocado/plugins/multiplex.py +++ b/avocado/plugins/multiplex.py @@ -48,7 +48,7 @@ class Multiplex(CLICmd): parser.add_argument('--filter-out', nargs='*', default=[], help='Filter out path(s) from multiplexing') - parser.add_argument('-s', '--system-wide', action='store_true', + parser.add_argument('--system-wide', action='store_true', help="Combine the files with the default " "tree.") parser.add_argument('-c', '--contents', action='store_true', -- GitLab