diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-01-13 15:26:23 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-01-13 15:26:23 +0000 |
commit | b53d64fa87c3828ba6603a0e6d69461fa6bf3e46 (patch) | |
tree | b6240f91407831a522c5204318df2af197a38971 /urpm/orphans.pm | |
parent | 3f620368cba7eb40349d514ee1af73fec6819ef3 (diff) | |
download | urpmi-b53d64fa87c3828ba6603a0e6d69461fa6bf3e46.tar urpmi-b53d64fa87c3828ba6603a0e6d69461fa6bf3e46.tar.gz urpmi-b53d64fa87c3828ba6603a0e6d69461fa6bf3e46.tar.bz2 urpmi-b53d64fa87c3828ba6603a0e6d69461fa6bf3e46.tar.xz urpmi-b53d64fa87c3828ba6603a0e6d69461fa6bf3e46.zip |
Make perl-checker happy
Diffstat (limited to 'urpm/orphans.pm')
-rw-r--r-- | urpm/orphans.pm | 2 |
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}; |