From a41b5eb8ba4b06bc34429dcaf0d07113bb3f2d99 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Mon, 21 Jan 2019 15:51:06 +0100 Subject: [PATCH] [bootstrap] Initialize verbosity option --- bob/devtools/bootstrap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bob/devtools/bootstrap.py b/bob/devtools/bootstrap.py index 7cb555e9..69892a31 100644 --- a/bob/devtools/bootstrap.py +++ b/bob/devtools/bootstrap.py @@ -360,11 +360,11 @@ if __name__ == '__main__': parser.add_argument('-t', '--tag', default=os.environ.get('CI_COMMIT_TAG', None), help='If building a tag, pass it with this flag [default: %(default)s]') - parser.add_argument('--verbose', '-v', action='count', + parser.add_argument('--verbose', '-v', action='count', default=0, help='Increases the verbosity level. We always prints error and ' \ 'critical messages. Use a single ``-v`` to enable warnings, ' \ 'two ``-vv`` to enable information messages and three ``-vvv`` ' \ - 'to enable debug messages') + 'to enable debug messages [default: %(default)s]') args = parser.parse_args() -- GitLab