10l: Really accept both one and two dashes.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18533 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-05-17 14:49:44 +00:00
parent 994b523d0c
commit 35ab7c442a
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ if len(sys.argv) < 3:
sys.exit(1)
i = 1
show_missing = False
if sys.argv[i] == ( '--missing' or '-missing' ):
if sys.argv[i] in ( '--missing', '-missing' ):
show_missing = True
i = 2
base = parse(sys.argv[i])