summaryrefslogtreecommitdiffstats
path: root/urpm/msg.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-09-10 12:15:33 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-09-10 12:15:33 +0000
commit0344cf223523ae5c2f9348e5949b710a2880d740 (patch)
tree787da0d3f60d17e52706e500ae3b65c7d5ceceb3 /urpm/msg.pm
parent1bfb0aff7a80c8476f999cd8a0d83edb80baf10e (diff)
downloadurpmi-0344cf223523ae5c2f9348e5949b710a2880d740.tar
urpmi-0344cf223523ae5c2f9348e5949b710a2880d740.tar.gz
urpmi-0344cf223523ae5c2f9348e5949b710a2880d740.tar.bz2
urpmi-0344cf223523ae5c2f9348e5949b710a2880d740.tar.xz
urpmi-0344cf223523ae5c2f9348e5949b710a2880d740.zip
use ">" instead of "*" to mean ellipsis
(as suggested by Olivier Faurax on cooker@)
Diffstat (limited to 'urpm/msg.pm')
-rw-r--r--urpm/msg.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/msg.pm b/urpm/msg.pm
index dcb99056..31719dbc 100644
--- a/urpm/msg.pm
+++ b/urpm/msg.pm
@@ -158,7 +158,7 @@ sub _format_line_selected_packages {
foreach my $max (@format_line_field_sizes) {
foreach (@l) {
if ($max && length($_->[$i]) > $max) {
- $_->[$i] = substr($_->[$i], 0, $max-1) . '*';
+ $_->[$i] = substr($_->[$i], 0, $max-1) . '>';
}
}
$i++;