aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2012-12-02 14:12:26 +0100
committerFabian Groffen <grobian@gentoo.org>2012-12-02 14:12:26 +0100
commit5ce9bb3828e510b677742fe576291132bdcc837b (patch)
tree817845c821228dfca6e1d2b851d5446af6cb7853 /tabcheck.py
parentMerge remote-tracking branch 'overlays-gentoo-org/master' into prefix (diff)
downloadportage-5ce9bb3828e510b677742fe576291132bdcc837b.tar.gz
portage-5ce9bb3828e510b677742fe576291132bdcc837b.tar.bz2
portage-5ce9bb3828e510b677742fe576291132bdcc837b.zip
tabcheck: fix for Python 3
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 c45b74873..fe5227ca7 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)