summaryrefslogtreecommitdiffstats
path: root/perl-install/modules
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-02-25 14:30:19 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-02-25 14:30:19 +0000
commit9861915986ef709f19eda9ae91eb9cd499b25b68 (patch)
tree2eb7a80f1f8d889d2966e6a8c2955c3796e63563 /perl-install/modules
parentfed236f9939dfad4643a835ee93c95bcfc38f9e7 (diff)
downloaddrakx-backup-do-not-use-9861915986ef709f19eda9ae91eb9cd499b25b68.tar
drakx-backup-do-not-use-9861915986ef709f19eda9ae91eb9cd499b25b68.tar.gz
drakx-backup-do-not-use-9861915986ef709f19eda9ae91eb9cd499b25b68.tar.bz2
drakx-backup-do-not-use-9861915986ef709f19eda9ae91eb9cd499b25b68.tar.xz
drakx-backup-do-not-use-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.pm2
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()));
}
}
}