From 7bdd4d68f6057931339af679341a13dd30fa1059 Mon Sep 17 00:00:00 2001 From: K4YT3X Date: Tue, 23 Oct 2018 13:29:29 -0400 Subject: [PATCH] fixed a fatal error in help message --- video2x.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video2x.py b/video2x.py index 6ae8a4f..2ca8719 100755 --- a/video2x.py +++ b/video2x.py @@ -62,7 +62,7 @@ def process_arguments(): options_group.add_argument('-v', '--video', help='Specify source video file', action='store', default=False) options_group.add_argument('-o', '--output', help='Specify output file', action='store', default=False) options_group.add_argument('-y', '--model_type', help='Specify model to use', action='store', default='anime_style_art_rgb') - options_group.add_argument('-t', '--threads', help='Specify model to use', action='store', type=int, default=5) + options_group.add_argument('-t', '--threads', help='Specify number of threads to use for upscaling', action='store', type=int, default=5) options_group.add_argument('-c', '--config', help='Manually specify config file', action='store', default='video2x.json') # Render drivers, at least one option must be specified