Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMark Harris <mark.hsj@gmail.com>2014-09-02 02:13:42 +0400
committerClément Bœsch <u@pkh.me>2014-09-02 09:31:34 +0400
commit4cabee50f624de9b9bb074d8571abb0f06e0b635 (patch)
tree4b990d924993dde0aac2ef6fc52b255d096740ed /tools
parente6b125e3be19fb341fd9a759ad0af3b39ba35e0c (diff)
tools/normalize.py: both input and output file names are required
Diffstat (limited to 'tools')
-rwxr-xr-xtools/normalize.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/normalize.py b/tools/normalize.py
index e0159133a6..7d87c5e154 100755
--- a/tools/normalize.py
+++ b/tools/normalize.py
@@ -2,7 +2,7 @@
import sys, subprocess
-if len(sys.argv) > 1:
+if len(sys.argv) > 2:
ifile = sys.argv[1]
encopt = sys.argv[2:-1]
ofile = sys.argv[-1]