diff options
-rw-r--r-- | urpm/main_loop.pm | 2 |
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) { |