aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xckandumper12
1 files 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)