diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-03 05:43:23 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-03 05:43:23 +0000 |
commit | 11c559375d0d541d0f5fb489601943a4787eac7f (patch) | |
tree | b6454c0e8a233cfd27ecf2efd2c5981713604405 /perl-install/interactive | |
parent | 5f0477547b3122c61cb11f97e5d2dfac8932fcce (diff) | |
download | drakx-11c559375d0d541d0f5fb489601943a4787eac7f.tar drakx-11c559375d0d541d0f5fb489601943a4787eac7f.tar.gz drakx-11c559375d0d541d0f5fb489601943a4787eac7f.tar.bz2 drakx-11c559375d0d541d0f5fb489601943a4787eac7f.tar.xz drakx-11c559375d0d541d0f5fb489601943a4787eac7f.zip |
make perl_checker happy
Diffstat (limited to 'perl-install/interactive')
-rw-r--r-- | perl-install/interactive/newt.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive/newt.pm b/perl-install/interactive/newt.pm index 5b6c02005..8bc39b19f 100644 --- a/perl-install/interactive/newt.pm +++ b/perl-install/interactive/newt.pm @@ -315,7 +315,7 @@ sub ask_fromW_real { my ($ok, $cancel) = ($common->{ok}, $common->{cancel}); my ($need_to_die); if (!defined $cancel && !defined $ok) { - $cancel = $::isWizard && !$::Wizard_no_previous ? N("Previous") : N("Cancel") ; + $cancel = $::isWizard && !$::Wizard_no_previous ? N("Previous") : N("Cancel"); $need_to_die = 1 if !($::isWizard && !$::Wizard_no_previous); } $ok ||= $::isWizard ? ($::Wizard_finished ? N("Finish") : N("Next")) : N("Ok"); |