From 13e91d14af67e61ad823dec4c87cb2cfcd3ceffc Mon Sep 17 00:00:00 2001 From: Cyberes Date: Thu, 2 Feb 2023 20:50:57 -0700 Subject: [PATCH] fix copy/paste mistake --- downloader.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/downloader.py b/downloader.py index d62e8f3..4553f9f 100755 --- a/downloader.py +++ b/downloader.py @@ -44,7 +44,8 @@ parser.add_argument('--silence-errors', '-s', action='store_true', help="Don't p parser.add_argument('--ignore-downloaded', '-i', action='store_true', help='Ignore videos that have been already downloaded and let youtube-dl handle everything.') parser.add_argument('--erase-downloaded-tracker', '-e', action='store_true', help='Erase the tracked video file.') parser.add_argument('--ratelimit-sleep', type=int, default=5, help='How many seconds to sleep to prevent rate-limiting.') -parser.add_argument('--input-datatype', choices=['auto', 'txt', 'yaml'], default='auto', help=) +parser.add_argument('--input-datatype', choices=['auto', 'txt', 'yaml'], default='auto', help='The datatype of the input file. If set to auto, the file will be scanned for a URL on the firstline.' + 'If is a URL, the filetype will be set to txt. If it is a key: value pair then the filetype will be set to yaml.') parser.add_argument('--log-dir', default=None, help='Where to store the logs. Must be set when --output is not.') args = parser.parse_args()