From da4118dcf3101b0b3a2b85ab060dc81c8c78d283 Mon Sep 17 00:00:00 2001 From: Darko Poljak Date: Wed, 8 Mar 2017 19:07:02 +0100 Subject: [PATCH] pep8 --- cdist/argparse.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cdist/argparse.py b/cdist/argparse.py index e2a13c38..3791e779 100644 --- a/cdist/argparse.py +++ b/cdist/argparse.py @@ -86,10 +86,10 @@ def get_parsers(): parser['loglevel'].add_argument( '-v', '--verbose', help=('Increase the verbosity level. Every instance of -v ' - 'increments the verbosity level by one. Its default value is ' - '0. There are 4 levels of verbosity. The order of levels ' - 'from the lowest to the highest are: ERROR (0), WARNING (1), ' - 'INFO (2) and DEBUG (3 or higher).'), + 'increments the verbosity level by one. Its default value ' + 'is 0. There are 4 levels of verbosity. The order of levels ' + 'from the lowest to the highest are: ERROR (0), ' + 'WARNING (1), INFO (2) and DEBUG (3 or higher).'), action='count', default=0) parser['beta'] = argparse.ArgumentParser(add_help=False)