mirror of
https://github.com/mpv-player/mpv
synced 2025-04-04 23:40:47 +00:00
Accept --missing as well as -missing, print less newlines.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18531 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
00a3a68575
commit
4997540e67
@ -51,16 +51,16 @@ def compare(base, other, show_missing=False):
|
|||||||
print 'Missing: ', ' '.join(missing)
|
print 'Missing: ', ' '.join(missing)
|
||||||
|
|
||||||
if len(sys.argv) < 3:
|
if len(sys.argv) < 3:
|
||||||
print 'Usage:\n'+sys.argv[0]+' [-missing] base_helpfile otherfile1 '\
|
print 'Usage:\n'+sys.argv[0]+' [--missing] base_helpfile otherfile1 '\
|
||||||
'[otherfile2 ...]'
|
'[otherfile2 ...]'
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
i = 1
|
i = 1
|
||||||
show_missing = False
|
show_missing = False
|
||||||
if sys.argv[i] == '-missing':
|
if sys.argv[i] == ( '--missing' or '-missing' ):
|
||||||
show_missing = True
|
show_missing = True
|
||||||
i = 2
|
i = 2
|
||||||
base = parse(sys.argv[i])
|
base = parse(sys.argv[i])
|
||||||
for filename in sys.argv[i+1:]:
|
for filename in sys.argv[i+1:]:
|
||||||
print '*****', filename
|
print '*****', filename
|
||||||
compare(base, parse(filename), show_missing)
|
compare(base, parse(filename), show_missing)
|
||||||
print '\n\n\n'
|
print '\n'
|
||||||
|
Loading…
Reference in New Issue
Block a user