aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2007-05-23 17:32:11 +0000
committerFabian Groffen <grobian@gentoo.org>2007-05-23 17:32:11 +0000
commit3cc2fd0d5d3b90ddb8b786694b8a85173b69d406 (patch)
treebcf5f7cd504a0fbcb362c28db9c7bd0939d2f770 /tabcheck.py
parent Merged from trunk 6590:6592 (diff)
downloadportage-3cc2fd0d5d3b90ddb8b786694b8a85173b69d406.tar.gz
portage-3cc2fd0d5d3b90ddb8b786694b8a85173b69d406.tar.bz2
portage-3cc2fd0d5d3b90ddb8b786694b8a85173b69d406.zip
I would be very delighted if people could run tabnanny themselves, as
indenting python is absolutely horrible work, since Vim can't help you with that due to this indenting=scope thing. It also makes python itself kind of upset usually if you mix up tabs with spaces, so another reason to run tabnanny. svn path=/main/branches/prefix/; revision=6599
Diffstat (limited to 'tabcheck.py')
-rwxr-xr-xtabcheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tabcheck.py b/tabcheck.py
index ae9f28960..c45b74873 100755
--- a/tabcheck.py
+++ b/tabcheck.py
@@ -3,5 +3,5 @@
import tabnanny,sys
for x in sys.argv:
-# print "Tabchecking " + x
+ print "Tabchecking " + x
tabnanny.check(x)