contrib/import-checker.py
changeset 29234 393aef802535
parent 29211 b42c2a66a698
child 29374 7712fcde2d56
--- a/contrib/import-checker.py	Sun May 15 10:45:32 2016 +0900
+++ b/contrib/import-checker.py	Sun May 15 10:48:05 2016 +0900
@@ -663,7 +663,7 @@
     the input file.
     """
     py = False
-    if f.endswith('.py'):
+    if not f.endswith('.t'):
         with open(f) as src:
             yield src.read(), modname, f, 0
             py = True