diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-08-23 14:15:10 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-08-23 14:15:10 +0000 |
commit | 0c647308185ea7b23c5800f8068525c7899cca7a (patch) | |
tree | a9fd3733e77ffb2d98330b29a0e16ba270f5fb7d | |
parent | 0f0b6d87fbb3e83a70d5b9825c3ba4de211f2101 (diff) | |
download | urpmi-0c647308185ea7b23c5800f8068525c7899cca7a.tar urpmi-0c647308185ea7b23c5800f8068525c7899cca7a.tar.gz urpmi-0c647308185ea7b23c5800f8068525c7899cca7a.tar.bz2 urpmi-0c647308185ea7b23c5800f8068525c7899cca7a.tar.xz urpmi-0c647308185ea7b23c5800f8068525c7899cca7a.zip |
fix typo in debug message
-rw-r--r-- | urpm/install.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/install.pm b/urpm/install.pm index 28726b0c..ab88701e 100644 --- a/urpm/install.pm +++ b/urpm/install.pm @@ -165,7 +165,7 @@ sub install { foreach (@$remove) { if ($trans->remove($_)) { - $urpm->{debug} and $urpm->{debug}('trans: scheduling removal of ' . $urpm->{depslist}[$_]->fullname); + $urpm->{debug} and $urpm->{debug}("trans: scheduling removal of $_"); } else { $urpm->{error}("unable to remove package " . $_); } |