Gentoo Archives: gentoo-commits

From: Magnus Granberg <zorry@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/tinderbox-cluster:master commit in: pym/tbc/
Date: Thu, 03 Mar 2016 15:26:48
Message-Id: 1457018835.75fd66c5a04ba87ae92005b335fd5f854e00b5e5.zorry@gentoo
1 commit: 75fd66c5a04ba87ae92005b335fd5f854e00b5e5
2 Author: Magnus Granberg <zorry <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 3 15:27:15 2016 +0000
4 Commit: Magnus Granberg <zorry <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 3 15:27:15 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=75fd66c5
7
8 fix test too many values to unpack
9
10 pym/tbc/flags.py | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/pym/tbc/flags.py b/pym/tbc/flags.py
14 index 10c9390..eb3f782 100644
15 --- a/pym/tbc/flags.py
16 +++ b/pym/tbc/flags.py
17 @@ -195,7 +195,7 @@ class tbc_use_flags(object):
18 return iuse_flags, final_flags
19
20 def comper_useflags(self, build_dict):
21 - iuse_flags, use_enable = self.get_flags()
22 + iuse_flags, use_enable, usemasked = self.get_flags()
23 iuse = []
24 build_use_flags_dict = build_dict['build_useflags']
25 build_use_flags_list = []