diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-09-02 09:05:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-09-02 09:05:09 +0000 |
commit | cd149734943cb3afee3189320d68df3cc7c58eed (patch) | |
tree | e6f5d0729e0b7dcbcb3cf09a5765a919615a43c8 /perl-install/install_any.pm | |
parent | 89862a2710b9c7dd04e437420b1aa0d0a32e4b2a (diff) | |
download | drakx-cd149734943cb3afee3189320d68df3cc7c58eed.tar drakx-cd149734943cb3afee3189320d68df3cc7c58eed.tar.gz drakx-cd149734943cb3afee3189320d68df3cc7c58eed.tar.bz2 drakx-cd149734943cb3afee3189320d68df3cc7c58eed.tar.xz drakx-cd149734943cb3afee3189320d68df3cc7c58eed.zip |
fs::format::wait_message() is now ->wait_message_with_progress_bar (on interactive objects)
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index ca1f00a2e..cf4030cce 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -749,7 +749,7 @@ Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when done.", my $m = install_medium::by_id($k, $o->{packages}); #- don't copy rpms of supplementary media next if $m->is_suppl; - my ($wait_w, $wait_message) = fs::format::wait_message($o); #- nb, this is only called when interactive + my ($wait_w, $wait_message) = $o->wait_message_with_progress_bar; #- nb, this is only called when interactive $wait_message->(N("Copying in progress") . "\n($m->{descr})"); #- XXX to be translated if ($k != $current_medium) { my $cd_k = $m->get_cd_number; |