From cea1ee0652e9e5311907e322c3fc2fb5cf3b0f6b Mon Sep 17 00:00:00 2001 From: Lucas Meneghel Rodrigues Date: Wed, 1 Oct 2014 20:32:31 -0300 Subject: [PATCH] avocado.cli.parser: Remove unused -V option This option has been replaced with option --show-job-log, specific to the test runner. Signed-off-by: Lucas Meneghel Rodrigues --- avocado/cli/parser.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/avocado/cli/parser.py b/avocado/cli/parser.py index 23de6de0..06bde8fc 100644 --- a/avocado/cli/parser.py +++ b/avocado/cli/parser.py @@ -35,9 +35,6 @@ class Parser(object): version='Avocado %s' % VERSION, add_help=False, # see parent parsing description='Avocado Test Runner') - self.application.add_argument('-V', '--verbose', action='store_true', - help='print extra debug messages', - dest='verbose') self.application.add_argument('--logdir', action='store', help='Alternate logs directory', dest='logdir', default='') -- GitLab