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: Sat, 29 Oct 2011 22:38:51
Message-Id: 7e8a8fb059e563b08b738f3fcd5fa6e892e21a2c.zorry@gentoo
1 commit: 7e8a8fb059e563b08b738f3fcd5fa6e892e21a2c
2 Author: Magnus Granberg <zorry <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 29 22:38:25 2011 +0000
4 Commit: Magnus Granberg <zorry <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 29 22:38:25 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/zorry.git;a=commit;h=7e8a8fb0
7
8 fix bugs in setup_profile part4
9
10 ---
11 gobs/pym/package.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/gobs/pym/package.py b/gobs/pym/package.py
15 index 3bd614e..b68d8f6 100644
16 --- a/gobs/pym/package.py
17 +++ b/gobs/pym/package.py
18 @@ -130,7 +130,7 @@ class gobs_package(object):
19 conn=CM.getConnection()
20 # Get the needed info from packageDict and config_cpv_listDict and put that in buildqueue
21 # Only add it if ebuild_version in packageDict and config_cpv_listDict match
22 - if config_cpv_listDict not None:
23 + if config_cpv_listDict is not None:
24 message = None
25 # Unpack config_cpv_listDict
26 for k, v in config_cpv_listDict.iteritems():