summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-11-22 01:59:26 +0000
committerZac Medico <zmedico@gentoo.org>2008-11-22 01:59:26 +0000
commit4e858d4d243362e10baeb35988f2a8396dc6c926 (patch)
treeee5de8008e10513c06d39f9181c17d570fe4f8a1
parent2714af5f630efa33ea33c2186a85ba0432a6aec0 (diff)
downloadportage-4e858d4d243362e10baeb35988f2a8396dc6c926.tar.gz
portage-4e858d4d243362e10baeb35988f2a8396dc6c926.tar.bz2
portage-4e858d4d243362e10baeb35988f2a8396dc6c926.zip
Add missing '%' symbol (for binary package moves) to the key that's displayed
by _global_updates(). Thanks to Andrew Gaffney <agaffney@g.o> for reporting. svn path=/main/trunk/; revision=12026
-rw-r--r--pym/portage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index efdb6fcd5..36e055f91 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -7241,7 +7241,7 @@ def _global_updates(trees, prev_mtimes):
writemsg_stdout("\n\n")
writemsg_stdout(green("Performing Global Updates: ")+bold(mykey)+"\n")
writemsg_stdout("(Could take a couple of minutes if you have a lot of binary packages.)\n")
- writemsg_stdout(" "+bold(".")+"='update pass' "+bold("*")+"='binary update' "+bold("@")+"='/var/db move'\n"+" "+bold("s")+"='/var/db SLOT move' "+bold("S")+"='binary SLOT move' "+bold("p")+"='update /etc/portage/package.*'\n")
+ writemsg_stdout(" "+bold(".")+"='update pass' "+bold("*")+"='binary update' "+bold("@")+"='/var/db move'\n"+" "+bold("s")+"='/var/db SLOT move' "+bold("%")+"='binary move' "+bold("S")+"='binary SLOT move' "+bold("p")+"='update /etc/portage/package.*'\n")
valid_updates, errors = parse_updates(mycontent)
myupd.extend(valid_updates)
writemsg_stdout(len(valid_updates) * "." + "\n")