diff options
author | Thierry Vignaud <tv@mageia.org> | 2013-04-21 00:20:42 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2013-04-21 00:20:42 +0000 |
commit | fa45fefa906393265c37099d225633315866429a (patch) | |
tree | 3c15a147fb3dd50eb6e367ecd4dc1b7dc1cfc860 | |
parent | fefc3ebc73290c3a9fa061f590b55aa3baada122 (diff) | |
download | drakx-backup-do-not-use-fa45fefa906393265c37099d225633315866429a.tar drakx-backup-do-not-use-fa45fefa906393265c37099d225633315866429a.tar.gz drakx-backup-do-not-use-fa45fefa906393265c37099d225633315866429a.tar.bz2 drakx-backup-do-not-use-fa45fefa906393265c37099d225633315866429a.tar.xz drakx-backup-do-not-use-fa45fefa906393265c37099d225633315866429a.zip |
convert from ask_from() to ask_from_()
(needed for next commit)
-rw-r--r-- | perl-install/install/any.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index fe05557f5..918a89103 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -125,8 +125,8 @@ Do you have a supplementary installation medium to configure?", 'nfs' => N("Network (NFS)"), ); - $o->ask_from( - '', $msg, + $o->ask_from_({ messages => $msg, + }, [ { val => \my $suppl, list => [ map { $_->[0] } group_by2(@l) ], |