summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2011-09-14 22:39:06 +0200
committerArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2011-09-14 22:39:06 +0200
commit3661e42c50840d50fa74e4114aa0eb2035c98e38 (patch)
tree88fb1d768f153f3e7a0c069ce1864f8023956e79
parent630996d8ea9dcdb429e56fa55b966c47a2dff433 (diff)
downloadportage-3661e42c50840d50fa74e4114aa0eb2035c98e38.tar.gz
portage-3661e42c50840d50fa74e4114aa0eb2035c98e38.tar.bz2
portage-3661e42c50840d50fa74e4114aa0eb2035c98e38.zip
Fix grammar in some messages.
-rw-r--r--pym/portage/util/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/util/__init__.py b/pym/portage/util/__init__.py
index de3abdaa2..20eecd65a 100644
--- a/pym/portage/util/__init__.py
+++ b/pym/portage/util/__init__.py
@@ -318,11 +318,11 @@ def stack_lists(lists, incremental=1, remember_source_file=False,
for source_file, tokens in unmatched_removals.items():
if len(tokens) > 3:
selected = [tokens.pop(), tokens.pop(), tokens.pop()]
- writemsg(_("--- Unmatch removal atoms in %s: %s and %s more\n") % \
+ writemsg(_("--- Unmatched removal atoms in %s: %s and %s more\n") % \
(source_file, ", ".join(selected), len(tokens)),
noiselevel=-1)
else:
- writemsg(_("--- Unmatch removal atom(s) in %s: %s\n") % (source_file, ", ".join(tokens)),
+ writemsg(_("--- Unmatched removal atom(s) in %s: %s\n") % (source_file, ", ".join(tokens)),
noiselevel=-1)
if remember_source_file: