aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dlc/options.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan@gmail.com>2021-02-05 04:23:04 +0530
committerpukkandan <pukkandan@gmail.com>2021-02-05 04:50:38 +0530
commitc25228e5da88bb4eaba3034b1fb129c257f9a219 (patch)
tree2276b4266c515bdfeee222b8cd0cac2b193bd137 /youtube_dlc/options.py
parentde6000d913fd35643cb6faf89919665ddd9ab225 (diff)
downloadhypervideo-pre-c25228e5da88bb4eaba3034b1fb129c257f9a219.tar.lz
hypervideo-pre-c25228e5da88bb4eaba3034b1fb129c257f9a219.tar.xz
hypervideo-pre-c25228e5da88bb4eaba3034b1fb129c257f9a219.zip
Release 2021.02.04
Diffstat (limited to 'youtube_dlc/options.py')
-rw-r--r--youtube_dlc/options.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/youtube_dlc/options.py b/youtube_dlc/options.py
index 06fbaa3cd..06273c20a 100644
--- a/youtube_dlc/options.py
+++ b/youtube_dlc/options.py
@@ -897,11 +897,13 @@ def parseOpts(overrideArguments=None):
filesystem.add_option(
'-c', '--continue',
action='store_true', dest='continue_dl', default=True,
- help='Resume partially downloaded files (default)')
+ help='Resume partially downloaded files/fragments (default)')
filesystem.add_option(
'--no-continue',
action='store_false', dest='continue_dl',
- help='Restart download of partially downloaded files from beginning')
+ help=(
+ 'Do not resume partially downloaded fragments. '
+ 'If the file is unfragmented, restart download of the entire file'))
filesystem.add_option(
'--part',
action='store_false', dest='nopart', default=False,
@@ -929,7 +931,7 @@ def parseOpts(overrideArguments=None):
filesystem.add_option(
'--write-info-json',
action='store_true', dest='writeinfojson', default=False,
- help='Write video metadata to a .info.json file. Note that this may contain personal information')
+ help='Write video metadata to a .info.json file (this may contain personal information)')
filesystem.add_option(
'--no-write-info-json',
action='store_false', dest='writeinfojson',