From 02f1e9a143441e8eef2699e8f604f0a5c57ce1c1 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 4 Aug 2007 19:44:12 +0000 Subject: Make config updates get counted correctly for bug #187741. svn path=/main/trunk/; revision=7564 --- pym/emerge/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pym/emerge/__init__.py b/pym/emerge/__init__.py index b4e2102c4..6c77bec6f 100644 --- a/pym/emerge/__init__.py +++ b/pym/emerge/__init__.py @@ -4393,7 +4393,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): -- cgit v1.2.3-1-g7c22