diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-25 14:30:19 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-25 14:30:19 +0000 |
commit | 9861915986ef709f19eda9ae91eb9cd499b25b68 (patch) | |
tree | 2eb7a80f1f8d889d2966e6a8c2955c3796e63563 /perl-install/modules | |
parent | fed236f9939dfad4643a835ee93c95bcfc38f9e7 (diff) | |
download | drakx-9861915986ef709f19eda9ae91eb9cd499b25b68.tar drakx-9861915986ef709f19eda9ae91eb9cd499b25b68.tar.gz drakx-9861915986ef709f19eda9ae91eb9cd499b25b68.tar.bz2 drakx-9861915986ef709f19eda9ae91eb9cd499b25b68.tar.xz drakx-9861915986ef709f19eda9ae91eb9cd499b25b68.zip |
join detect_devices::stringlist() to have it in a text box (eurk!)
(for bug #1802), the result is quite ugly, but at least the full line can be read
Diffstat (limited to 'perl-install/modules')
-rw-r--r-- | perl-install/modules/interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules/interactive.pm b/perl-install/modules/interactive.pm index 1e5e039d5..cdf1c2a0c 100644 --- a/perl-install/modules/interactive.pm +++ b/perl-install/modules/interactive.pm @@ -67,7 +67,7 @@ sub load_category__prompt_for_more { if ($r eq "Yes") { push @l, load_category__prompt($in, $category) || next; } else { - $in->ask_warn('', [ detect_devices::stringlist() ]); + $in->ask_warn('', join("\n", detect_devices::stringlist())); } } } |