From: Zac Medico Date: Sat, 4 Aug 2007 19:45:18 +0000 (-0000) Subject: Make config updates get counted correctly for bug #187741. (trunk r7564) X-Git-Tag: v2.1.3.9~61 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=49e47479d907de6a495d40394c85cb3f11706205;p=portage.git Make config updates get counted correctly for bug #187741. (trunk r7564) svn path=/main/branches/2.1.2/; revision=7565 --- diff --git a/bin/emerge b/bin/emerge index 34f49296b..1dcec33ca 100755 --- a/bin/emerge +++ b/bin/emerge @@ -4380,7 +4380,10 @@ def chk_updated_cfg_files(target_root, config_protect): print >> sys.stderr, " " + bad("*")+ " error scanning '%s'" % x else: files = a[1].split('\0') - if files != ['']: + # split always produces an empty string as the last element + if files and not files[-1]: + del files[-1] + if files: procount += 1 print colorize("WARN", " * IMPORTANT:"), if stat.S_ISDIR(mymode):