diff options
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 299b81ec3..8490e72f3 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -218,7 +218,7 @@ sub selectKeyboard { messages => N("Please choose your keyboard layout."), advanced_messages => N("Here is the full list of keyboards available"), advanced_label => N("More"), - callbacks => { changed => sub { $other = $_[0]==1 } }, + callbacks => { changed => sub { $other = $_[0] == 1 } }, }, [ if_(@best > 1, { val => \$KEYBOARD, type => 'list', format => $format, sort => 1, list => [ @best ] }), |