From 290cbccfd4d4603c448c913dca9c74b555064935 Mon Sep 17 00:00:00 2001 From: Benjamin Bach Date: Sat, 1 Aug 2015 21:09:46 +0200 Subject: [PATCH] make at least one file mandatory --- ffmpeg_normalize/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ffmpeg_normalize/__main__.py b/ffmpeg_normalize/__main__.py index e6df5ce..bed772e 100644 --- a/ffmpeg_normalize/__main__.py +++ b/ffmpeg_normalize/__main__.py @@ -12,7 +12,7 @@ part as output WAV file. Usage: - ffmpeg-normalize [options] [INPUT ...] + ffmpeg-normalize [options] ... Options: -f --force Force overwriting existing files @@ -173,7 +173,7 @@ def main(): logger.debug(args) - for input_file in args['INPUT']: + for input_file in args['']: if not os.path.exists(input_file): logger.error("file " + input_file + " does not exist") continue