contrib/import-checker.py
changeset 25063 723e364488f4
parent 24669 fbdbff1b486a
child 25064 3bbbadf69d0a
--- a/contrib/import-checker.py	Wed May 13 20:36:56 2015 +0200
+++ b/contrib/import-checker.py	Thu May 14 01:49:10 2015 +0900
@@ -215,9 +215,12 @@
     return len(c), c
 
 def main(argv):
-    if len(argv) < 2:
-        print 'Usage: %s file [file] [file] ...'
+    if len(argv) < 2 or (argv[1] == '-' and len(argv) > 2):
+        print 'Usage: %s {-|file [file] [file] ...}'
         return 1
+    if argv[1] == '-':
+        argv = argv[:1]
+        argv.extend(l.rstrip() for l in sys.stdin.readlines())
     used_imports = {}
     any_errors = False
     for source_path in argv[1:]: