Gentoo Archives: gentoo-commits

From: Magnus Granberg <zorry@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/zorry:master commit in: gobs/pym/
Date: Thu, 01 Sep 2011 23:34:40
Message-Id: 8d3415a5dee667d3c78b26a040c422dd713f6649.zorry@gentoo
1 commit: 8d3415a5dee667d3c78b26a040c422dd713f6649
2 Author: Magnus Granberg <zorry <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 1 23:34:19 2011 +0000
4 Commit: Magnus Granberg <zorry <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 1 23:34:19 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/zorry.git;a=commit;h=8d3415a5
7
8 Fix errors for python 3.* support part2
9
10 ---
11 gobs/pym/check_setup.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/gobs/pym/check_setup.py b/gobs/pym/check_setup.py
15 index 09823cd..7dcd053 100644
16 --- a/gobs/pym/check_setup.py
17 +++ b/gobs/pym/check_setup.py
18 @@ -77,7 +77,7 @@ def check_make_conf_guest(connection, config_profile):
19
20 def check_configure_guest(connection, config_profile):
21 pass_make_conf = check_make_conf_guest(connection, config_profile)
22 - print pass_make_conf
23 + print(pass_make_conf)
24 if pass_make_conf == "1":
25 # profile not active or updatedb is runing
26 return False