diff options
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 033d92f8e..87a43f815 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -72,7 +72,7 @@ sub leavingStep($$) { while (my $f = shift @{$o->{steps}{$step}{toBeDone} || []}) { eval { &$f() }; $o->ask_warn(_("Error"), [ -_("An error occured, i don't know how to handle it nicely, +_("An error occurred, i don't know how to handle it nicely, so continue at your own risk :("), $@ ]) if $@; } } @@ -107,7 +107,7 @@ sub choosePartitionsToFormat($$) { foreach (@$fstab) { $_->{toFormat} = ($_->{mntpoint} && isExt2($_) || isSwap($_)) && - ($_->{notFormatted} || $o->{default}{partitionning}{autoformat}); + ($_->{notFormatted} || $o->{default}{partitioning}{autoformat}); } } |