From 4997540e67216ca5bfdd1926e20f28e8cabf43a6 Mon Sep 17 00:00:00 2001 From: diego Date: Wed, 17 May 2006 12:10:17 +0000 Subject: Accept --missing as well as -missing, print less newlines. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18531 b3059339-0415-0410-9bf9-f77b7e298cf2 --- TOOLS/mphelp_check.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'TOOLS') diff --git a/TOOLS/mphelp_check.py b/TOOLS/mphelp_check.py index cc306e3de0..92c54cb70a 100755 --- a/TOOLS/mphelp_check.py +++ b/TOOLS/mphelp_check.py @@ -51,16 +51,16 @@ def compare(base, other, show_missing=False): print 'Missing: ', ' '.join(missing) 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 ...]' sys.exit(1) i = 1 show_missing = False -if sys.argv[i] == '-missing': +if sys.argv[i] == ( '--missing' or '-missing' ): show_missing = True i = 2 base = parse(sys.argv[i]) for filename in sys.argv[i+1:]: print '*****', filename compare(base, parse(filename), show_missing) - print '\n\n\n' + print '\n' -- cgit v1.2.3