Bug #231464 - Replace erroneous "return" statement in elog_process() with
authorZac Medico <zmedico@gentoo.org>
Sat, 19 Jul 2008 11:46:23 +0000 (11:46 -0000)
committerZac 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

index 50a51e9fd4871c8b2088b6d78ec07eecd0e4340f..8c81e260bb8ecfc359f4e1acb5f09856c1b2c662 100644 (file)
@@ -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)