Clarify that download rate is in bytes per second
[youtube-dl] / youtube_dl / __init__.py
index db63d0adb7a68f3f1f1eb39e5da7dd4a38937ebf..250cf62f866581a0278923e275a5b9c4c05a7eca 100644 (file)
@@ -208,7 +208,7 @@ def parseOpts(overrideArguments=None):
             help='language of the subtitles to download (optional) use IETF language tags like \'en\'')
 
     downloader.add_option('-r', '--rate-limit',
-            dest='ratelimit', metavar='LIMIT', help='maximum download rate (e.g. 50k or 44.6m)')
+            dest='ratelimit', metavar='LIMIT', help='maximum download rate in bytes per second (e.g. 50k or 44.6m)')
     downloader.add_option('-R', '--retries',
             dest='retries', metavar='RETRIES', help='number of retries (default is %default)', default=10)
     downloader.add_option('--buffer-size',