summaryrefslogtreecommitdiffstats
path: root/urpm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-02-25 13:40:21 +0000
committerThierry Vignaud <tv@mandriva.org>2008-02-25 13:40:21 +0000
commit0115e3a20daed9ebcc3bd4771f9b93ae56fdb9c9 (patch)
tree67cccb7cff1ff3d815843a19874efce3a0bbbc1c /urpm
parent86f4aada5d82d01e84dfb727180d1076eb8aa58f (diff)
downloadurpmi-0115e3a20daed9ebcc3bd4771f9b93ae56fdb9c9.tar
urpmi-0115e3a20daed9ebcc3bd4771f9b93ae56fdb9c9.tar.gz
urpmi-0115e3a20daed9ebcc3bd4771f9b93ae56fdb9c9.tar.bz2
urpmi-0115e3a20daed9ebcc3bd4771f9b93ae56fdb9c9.tar.xz
urpmi-0115e3a20daed9ebcc3bd4771f9b93ae56fdb9c9.zip
typo fix
Diffstat (limited to 'urpm')
-rw-r--r--urpm/main_loop.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/main_loop.pm b/urpm/main_loop.pm
index dfd1fd49..fb64d963 100644
--- a/urpm/main_loop.pm
+++ b/urpm/main_loop.pm
@@ -262,7 +262,7 @@ if (my @missing = grep { $error_sources{$_} eq 'missing' } keys %error_sources)
}
if (my @bad = grep { $error_sources{$_} eq 'bad' } keys %error_sources) {
$callbacks->{message}->(N("Error"), N("Installation failed, bad rpms:\n%s",
- join "\n", map { " " . urpm::download::hide_password($_) } @bad), "\n");
+ join "\n", map { " " . urpm::download::hide_password($_) } @bad) . "\n");
$exit_code = 11;
}
if ($nok) {