diff options
author | Francois Pons <fpons@mandriva.com> | 2003-08-26 14:39:37 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-08-26 14:39:37 +0000 |
commit | 0d8ded1c64d5b47b09011a7fe36c41c2eeca2079 (patch) | |
tree | 37801e6db0502121de0a30433f4719aeab7af54a /urpm.pm | |
parent | a732b8fa6a7dcbdf3568efdd11f56714b0ea4536 (diff) | |
download | urpmi-0d8ded1c64d5b47b09011a7fe36c41c2eeca2079.tar urpmi-0d8ded1c64d5b47b09011a7fe36c41c2eeca2079.tar.gz urpmi-0d8ded1c64d5b47b09011a7fe36c41c2eeca2079.tar.bz2 urpmi-0d8ded1c64d5b47b09011a7fe36c41c2eeca2079.tar.xz urpmi-0d8ded1c64d5b47b09011a7fe36c41c2eeca2079.zip |
fixed stupid typo.
Diffstat (limited to 'urpm.pm')
-rw-r--r-- | urpm.pm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -395,7 +395,7 @@ sub sync_logger { } else { $text = N(" %s%% completed, speed = %s", $percent, $speed); } - print STDERR " " x (79 - length($text)) . "\r"; + print STDERR $text, " " x (79 - length($text)), "\r"; } elsif ($mode eq 'end') { print STDERR " " x 79, "\r"; } |