From: Zac Medico Date: Sat, 19 Jul 2008 11:46:23 +0000 (-0000) Subject: Bug #231464 - Replace erroneous "return" statement in elog_process() with X-Git-Tag: v2.2_rc2~31 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8e273781ca8e717a9f03c1ea003c14798323b92c;p=portage.git 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 --- 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)