aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-07-19 11:46:23 +0000
committerZac Medico <zmedico@gentoo.org>2008-07-19 11:46:23 +0000
commit8e273781ca8e717a9f03c1ea003c14798323b92c (patch)
tree4bde5189dacdab904d0ebae46e1c8b68d34eb32f /pym/portage/elog
parentInstead of calling _background_mode(), use the cached result. (diff)
downloadportage-8e273781ca8e717a9f03c1ea003c14798323b92c.tar.gz
portage-8e273781ca8e717a9f03c1ea003c14798323b92c.tar.bz2
portage-8e273781ca8e717a9f03c1ea003c14798323b92c.zip
Bug #231464 - Replace erroneous "return" statement in elog_process() with
a continue statement. Thanks to TGL for this patch. svn path=/main/trunk/; revision=11138
Diffstat (limited to 'pym/portage/elog')
-rw-r--r--pym/portage/elog/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/elog/__init__.py b/pym/portage/elog/__init__.py
index 50a51e9fd..8c81e260b 100644
--- 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)