summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@mandriva.com>2009-01-13 15:26:23 +0000
committerChristophe Fergeau <cfergeau@mandriva.com>2009-01-13 15:26:23 +0000
commitb53d64fa87c3828ba6603a0e6d69461fa6bf3e46 (patch)
treeb6240f91407831a522c5204318df2af197a38971
parent3f620368cba7eb40349d514ee1af73fec6819ef3 (diff)
downloadurpmi-b53d64fa87c3828ba6603a0e6d69461fa6bf3e46.tar
urpmi-b53d64fa87c3828ba6603a0e6d69461fa6bf3e46.tar.gz
urpmi-b53d64fa87c3828ba6603a0e6d69461fa6bf3e46.tar.bz2
urpmi-b53d64fa87c3828ba6603a0e6d69461fa6bf3e46.tar.xz
urpmi-b53d64fa87c3828ba6603a0e6d69461fa6bf3e46.zip
Make perl-checker happy
-rw-r--r--urpm/orphans.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/orphans.pm b/urpm/orphans.pm
index 6f243ff5..4f574d84 100644
--- a/urpm/orphans.pm
+++ b/urpm/orphans.pm
@@ -48,7 +48,7 @@ sub mark_as_requested {
grep { $state->{selected}{$_}{requested} } keys %{$state->{selected}}) {
my $name = $urpm->{depslist}[$_]->name;
if (defined($unrequested->{$name})) {
- $urpm->{info}(N("Marking $name as manually installed, it won't be auto-orphaned"));
+ $urpm->{info}(N("Marking %s as manually installed, it won't be auto-orphaned", $name));
$dirty = 1;
} else {
$urpm->{debug}("$name is not in potential orphans") if $urpm->{debug};