diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 8bd1f5a87..81794315c 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -665,7 +665,11 @@ USA")) || return; require crypto; eval { - $u->{mirror} = $o->ask_from_listf('', _("Choose a mirror from which to get the packages"), \&crypto::mirror2text, [ crypto::mirrors() ], $u->{mirror}); + $u->{mirror} = $o->ask_from_listf('', + _("Choose a mirror from which to get the packages"), + \&crypto::mirror2text, + [ crypto::mirrors() ], + $u->{mirror}); }; return if $@; |