]> gitweb.fluxo.info Git - ckandumper.git/commitdiff
More coding style
authorSilvio Rhatto <rhatto@riseup.net>
Fri, 17 May 2019 13:04:16 +0000 (10:04 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Fri, 17 May 2019 13:04:16 +0000 (10:04 -0300)
ckandumper

index 400fc6121437351e4fec64991fdb42641f9a95ff..237d9613a72c02aaf0b554e3a34c317b31f7a92b 100755 (executable)
@@ -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)