commit: 75fd66c5a04ba87ae92005b335fd5f854e00b5e5
Author: Magnus Granberg <zorry <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 3 15:27:15 2016 +0000
Commit: Magnus Granberg <zorry <AT> gentoo <DOT> org>
CommitDate: Thu Mar 3 15:27:15 2016 +0000
URL:
https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=75fd66c5
fix test too many values to unpack
pym/tbc/flags.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pym/tbc/flags.py b/pym/tbc/flags.py
index 10c9390..eb3f782 100644
--- a/pym/tbc/flags.py
+++ b/pym/tbc/flags.py
@@ -195,7 +195,7 @@ class tbc_use_flags(object):
return iuse_flags, final_flags
def comper_useflags(self, build_dict):
- iuse_flags, use_enable = self.get_flags()
+ iuse_flags, use_enable, usemasked = self.get_flags()
iuse = []
build_use_flags_dict = build_dict['build_useflags']
build_use_flags_list = []