Skip to content

Commit

Permalink
make at least one file mandatory
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaoming committed Aug 1, 2015
1 parent 2ed4d20 commit 290cbcc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ffmpeg_normalize/__main__.py
Expand Up @@ -12,7 +12,7 @@
part as output WAV file.
Usage:
ffmpeg-normalize [options] [INPUT ...]
ffmpeg-normalize [options] <input-file>...
Options:
-f --force Force overwriting existing files
Expand Down Expand Up @@ -173,7 +173,7 @@ def main():

logger.debug(args)

for input_file in args['INPUT']:
for input_file in args['<input-file>']:
if not os.path.exists(input_file):
logger.error("file " + input_file + " does not exist")
continue
Expand Down

0 comments on commit 290cbcc

Please sign in to comment.