From b8394069fb3511ba0d955d086b4a3f9aa57b98a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Tronel?= Date: Sat, 2 Dec 2023 18:10:18 +0100 Subject: [PATCH] Correct the name of an optional tool: vobsubocr. --- removeads.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/removeads.py b/removeads.py index 206cf89..9ea5f1a 100755 --- a/removeads.py +++ b/removeads.py @@ -28,7 +28,7 @@ from shutil import copyfile, which def checkRequiredTools(): logger = logging.getLogger(__name__) required = ['ffmpeg', 'ffprobe', 'mkvmerge'] - optional = ['mkvextract', 'vobusbocr'] + optional = ['mkvextract', 'vobsubocr'] for tool in required: if which(tool) == None: logger.error('Required tool: %s is missing.' % tool)