aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2019-05-17 10:04:16 -0300
committerSilvio Rhatto <rhatto@riseup.net>2019-05-17 10:04:16 -0300
commit8f3428e454544c60d3da5e8ccc6873709275bc40 (patch)
treefd0b86ccc96d0e5a6ea9dd5d3cfc0157870afe1a
parent7873814e1433b64eef674a993359a58cee52f131 (diff)
downloadckandumper-8f3428e454544c60d3da5e8ccc6873709275bc40.tar.gz
ckandumper-8f3428e454544c60d3da5e8ccc6873709275bc40.tar.bz2
More coding style
-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)