diff options
Diffstat (limited to 'urpm/msg.pm')
-rw-r--r-- | urpm/msg.pm | 2 |
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++; |