projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ffbff56
)
Appropriately return from _getMissingLicenses() if one of the choices is satisfied.
author
Zac Medico
<zmedico@gentoo.org>
Tue, 20 Mar 2007 20:00:10 +0000
(20:00 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Tue, 20 Mar 2007 20:00:10 +0000
(20:00 -0000)
svn path=/main/trunk/; revision=6253
pym/portage/__init__.py
patch
|
blob
|
history
diff --git
a/pym/portage/__init__.py
b/pym/portage/__init__.py
index 660e114e0b507fd8989cc55620994eb806991836..83332405234c3361be759d43caf38fcef9ca1974 100644
(file)
--- a/
pym/portage/__init__.py
+++ b/
pym/portage/__init__.py
@@
-1773,6
+1773,8
@@
class config:
if isinstance(element, list):
if element:
ret.append(self._getMissingLicenses(element))
+ if not ret[-1]:
+ return []
else:
if element in acceptable_licenses:
return []