diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-11-29 11:19:14 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-11-29 11:19:14 +0000 |
commit | 4f0f9d6ade8c3b66a479bbc6e63403aeebbee5d9 (patch) | |
tree | 6f6f8e5c5adec1cb482ff54dc1f80d81d7ae2163 | |
parent | 57faea33c3d26f059aa32d464da1ace6d9b9e279 (diff) | |
download | urpmi-4f0f9d6ade8c3b66a479bbc6e63403aeebbee5d9.tar urpmi-4f0f9d6ade8c3b66a479bbc6e63403aeebbee5d9.tar.gz urpmi-4f0f9d6ade8c3b66a479bbc6e63403aeebbee5d9.tar.bz2 urpmi-4f0f9d6ade8c3b66a479bbc6e63403aeebbee5d9.tar.xz urpmi-4f0f9d6ade8c3b66a479bbc6e63403aeebbee5d9.zip |
Nicer without parens
-rw-r--r-- | urpm.pm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2727,7 +2727,7 @@ sub install_logger { printf $total_pkg ? "%-33s" : "%-28s", N("Preparing..."); } else { if ($total_pkg) { - printf "%9s:%-23s", "(" . (++$urpm->{logger_id}) . "/" . $total_pkg . ")", ($pkg && $pkg->name); + printf "%9s:%-23s", (++$urpm->{logger_id}) . "/" . $total_pkg, ($pkg && $pkg->name); } else { printf "%4d:%-23s", ++$urpm->{logger_id}, ($pkg && $pkg->name); } |