diff options
Diffstat (limited to 'perl-install')
-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 8a66aa800..98f9cc120 100644 --- a/perl-install/modules/interactive.pm +++ b/perl-install/modules/interactive.pm @@ -60,7 +60,7 @@ sub load_category__prompt_for_more { while (1) { my $msg = @l ? - [ N("Found %s %s interfaces", join(", ", @l), $msg_type), + [ N("Found %s %s interfaces", join(", ", map { qq("$_") } @l), $msg_type), N("Do you have another one?") ] : N("Do you have any %s interfaces?", $msg_type); |