projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
be07416
)
Bug #231464 - Replace erroneous "return" statement in elog_process() with
author
Zac Medico
<zmedico@gentoo.org>
Sat, 19 Jul 2008 11:46:23 +0000
(11:46 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Sat, 19 Jul 2008 11:46:23 +0000
(11:46 -0000)
a continue statement. Thanks to TGL for this patch.
svn path=/main/trunk/; revision=11138
pym/portage/elog/__init__.py
patch
|
blob
|
history
diff --git
a/pym/portage/elog/__init__.py
b/pym/portage/elog/__init__.py
index 50a51e9fd4871c8b2088b6d78ec07eecd0e4340f..8c81e260bb8ecfc359f4e1acb5f09856c1b2c662 100644
(file)
--- a/
pym/portage/elog/__init__.py
+++ b/
pym/portage/elog/__init__.py
@@
-97,7
+97,7
@@
def elog_process(cpv, mysettings, phasefilter=None):
# in case the filters matched all messages and no module overrides exist
if len(default_logentries) == 0 and (not ":" in mysettings.get("PORTAGE_ELOG_SYSTEM", "")):
- return
+ continue
default_fulllog = _combine_logentries(default_logentries)