summaryrefslogtreecommitdiffstats
path: root/tabcheck.py
diff options
context:
space:
mode:
Diffstat (limited to 'tabcheck.py')
-rwxr-xr-xtabcheck.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tabcheck.py b/tabcheck.py
new file mode 100755
index 000000000..1699e9883
--- /dev/null
+++ b/tabcheck.py
@@ -0,0 +1,6 @@
+#!/usr/bin/python -O
+
+import tabnanny,sys
+
+for x in sys.argv:
+ tabnanny.check(x)