From 8f3428e454544c60d3da5e8ccc6873709275bc40 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 17 May 2019 10:04:16 -0300 Subject: More coding style --- ckandumper | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ckandumper b/ckandumper index 400fc61..237d961 100755 --- a/ckandumper +++ b/ckandumper @@ -332,12 +332,12 @@ if __name__ == "__main__": parser.add_argument('--limit-rate', help='Limit the download speed to amount bytes per second, per download') parser.add_argument('--limit-concurrent', help='Limit the total concurrent downloads') parser.add_argument('--wget', help='Path of custom wget implementation') - parser.add_argument('--debug', dest='debug', action='store_true', help="Enable debug") - parser.add_argument('--no-debug', dest='debug', action='store_false', help="Disable debug") - parser.add_argument('--progress', dest='progress', action='store_true', help="Enable progress") - parser.add_argument('--no-progress', dest='progress', action='store_false', help="Disable progress") - parser.add_argument('--randomize', dest='randomize', action='store_true', help="Randomize the list of downloads to avoid consuming resources of the same remote endpoint") - parser.add_argument('--no-randomize', dest='randomize', action='store_false', help="Do not randomize the list of downloads") + parser.add_argument('--debug', dest='debug', action='store_true', help='Enable debug') + parser.add_argument('--no-debug', dest='debug', action='store_false', help='Disable debug') + parser.add_argument('--progress', dest='progress', action='store_true', help='Enable progress') + parser.add_argument('--no-progress', dest='progress', action='store_false', help='Disable progress') + parser.add_argument('--randomize', dest='randomize', action='store_true', help='Randomize the list of downloads to avoid consuming resources of the same remote endpoint') + parser.add_argument('--no-randomize', dest='randomize', action='store_false', help='Do not randomize the list of downloads') parser.set_defaults(debug=False) parser.set_defaults(randomize=False) parser.set_defaults(progress=True) -- cgit v1.2.3