Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:prefix commit in: /
Date: Sun, 02 Dec 2012 13:13:08
Message-Id: 1354453946.5ce9bb3828e510b677742fe576291132bdcc837b.grobian@gentoo
1 commit: 5ce9bb3828e510b677742fe576291132bdcc837b
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 2 13:12:26 2012 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 2 13:12:26 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=5ce9bb38
7
8 tabcheck: fix for Python 3
9
10 ---
11 tabcheck.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/tabcheck.py b/tabcheck.py
15 index c45b748..fe5227c 100755
16 --- a/tabcheck.py
17 +++ b/tabcheck.py
18 @@ -3,5 +3,5 @@
19 import tabnanny,sys
20
21 for x in sys.argv:
22 - print "Tabchecking " + x
23 + print ("Tabchecking " + x)
24 tabnanny.check(x)