aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2019-05-17 08:34:34 -0300
committerSilvio Rhatto <rhatto@riseup.net>2019-05-17 08:34:34 -0300
commit6d6e7a7427150e31f6caf473d57a08994555b62c (patch)
tree74517468f998ca1db21f7e4d258c27fcd217437f
parent240dd14b69286e1143263ba749179f1e9b371e89 (diff)
downloadckandumper-6d6e7a7427150e31f6caf473d57a08994555b62c.tar.gz
ckandumper-6d6e7a7427150e31f6caf473d57a08994555b62c.tar.bz2
Coding style
-rwxr-xr-xckandumper6
1 files changed, 3 insertions, 3 deletions
diff --git a/ckandumper b/ckandumper
index 0fc2ff6..a371220 100755
--- a/ckandumper
+++ b/ckandumper
@@ -324,9 +324,9 @@ if __name__ == "__main__":
parser = argparse.ArgumentParser(description='Dump CKAN metadata and datasets.')
parser.add_argument('url', nargs='+', help='CKAN instance URL')
parser.add_argument('dest', nargs='+', help='Destination folder')
- 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('--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")