From: Zac Medico Date: Tue, 2 Mar 2010 20:07:12 +0000 (-0000) Subject: Bug #303445 - Fix getmaskingreason() to reset comment state when looping to X-Git-Tag: v2.1.8~168 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=4e7f165ea290eb580f2e785e5ded941d09860de2;p=portage.git Bug #303445 - Fix getmaskingreason() to reset comment state when looping to the next package.mask file. (trunk r15321) svn path=/main/branches/2.1.7/; revision=15554 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 2f2c8ff27..a090042af 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -8573,10 +8573,9 @@ def getmaskingreason(mycpv, metadata=None, settings=None, portdb=None, return_lo if mycp in settings.pmaskdict: for x in settings.pmaskdict[mycp]: if match_from_list(x, cpv_slot_list): - comment = "" - l = "\n" - comment_valid = -1 for pmask in pmasklists: + comment = "" + comment_valid = -1 pmask_filename = os.path.join(pmask[0], "package.mask") for i in range(len(pmask[1])): l = pmask[1][i].strip()