summaryrefslogtreecommitdiffstats
path: root/urpm
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@mandriva.com>2009-08-20 09:51:11 +0000
committerChristophe Fergeau <cfergeau@mandriva.com>2009-08-20 09:51:11 +0000
commit73b5c7c1ee2c69f6fed3aca51e44abf1447b17d0 (patch)
tree0165b76dedea9b05c65b8172ddb7b4f625a63979 /urpm
parent0296ec0e03620e8708784966f04e2526da03716a (diff)
downloadurpmi-73b5c7c1ee2c69f6fed3aca51e44abf1447b17d0.tar
urpmi-73b5c7c1ee2c69f6fed3aca51e44abf1447b17d0.tar.gz
urpmi-73b5c7c1ee2c69f6fed3aca51e44abf1447b17d0.tar.bz2
urpmi-73b5c7c1ee2c69f6fed3aca51e44abf1447b17d0.tar.xz
urpmi-73b5c7c1ee2c69f6fed3aca51e44abf1447b17d0.zip
add new line after message suggesting to remove orphans
Fixes bug #53003
Diffstat (limited to 'urpm')
-rw-r--r--urpm/orphans.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/urpm/orphans.pm b/urpm/orphans.pm
index e26be32d..e05ad872 100644
--- a/urpm/orphans.pm
+++ b/urpm/orphans.pm
@@ -359,8 +359,8 @@ sub get_now_orphans_msg {
my $orphans = get_orphans($urpm);
my @orphans = map { scalar $_->fullname } @$orphans or return '';
- P("The following package:\n%s\nis now orphaned, if you wish to remove it, you can use \"urpme --auto-orphans\"",
- "The following packages:\n%s\nare now orphaned, if you wish to remove them, you can use \"urpme --auto-orphans\"",scalar(@orphans), add_leading_spaces(join("\n", sort @orphans)));
+ P("The following package:\n%s\nis now orphaned, if you wish to remove it, you can use \"urpme --auto-orphans\"\n",
+ "The following packages:\n%s\nare now orphaned, if you wish to remove them, you can use \"urpme --auto-orphans\"\n",scalar(@orphans), add_leading_spaces(join("\n", sort @orphans)));
}