diff options
author | Thierry Vignaud <tv@mandriva.org> | 2009-03-26 18:45:01 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2009-03-26 18:45:01 +0000 |
commit | bba162e31f34fa240ca879e81c4c816052d0394a (patch) | |
tree | 82970db8f4c81f6fea2b58a545b441acf3592101 | |
parent | a87009ee4939352f523c27204f20570168b7c88b (diff) | |
download | rpmdrake-bba162e31f34fa240ca879e81c4c816052d0394a.tar rpmdrake-bba162e31f34fa240ca879e81c4c816052d0394a.tar.gz rpmdrake-bba162e31f34fa240ca879e81c4c816052d0394a.tar.bz2 rpmdrake-bba162e31f34fa240ca879e81c4c816052d0394a.tar.xz rpmdrake-bba162e31f34fa240ca879e81c4c816052d0394a.zip |
(show_urpm_progress) there's a bug since r17036 from gc on 2003-08-07
where we display misplaced quotes such as "downloading `foobar from
'medium Main Updates'´"
-rw-r--r-- | rpmdrake.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rpmdrake.pm b/rpmdrake.pm index f9cf7443..f0d9a87d 100644 --- a/rpmdrake.pm +++ b/rpmdrake.pm @@ -711,6 +711,7 @@ sub show_urpm_progress { $label->set_label($label->get_label . N(" failed!")); $medium = undef; } else { + # FIXME: we're displaying misplaced quotes such as "downloading `foobar from 'medium Main Updates'´" $file = $medium && length($file) < 40 ? #-PO: We're downloading the said file from the said medium N("%s from medium %s", basename($file), $medium) : basename($file); |