diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-11-17 17:09:22 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-11-17 17:09:22 +0000 |
commit | 7793c34be4c62fe10518191ad720a7731a01a0f1 (patch) | |
tree | c6813c94b3cc63362acb459cf337642b38c4a48a | |
parent | 5708a88247092464c2cc890c686cc0191abd765f (diff) | |
download | drakx-7793c34be4c62fe10518191ad720a7731a01a0f1.tar drakx-7793c34be4c62fe10518191ad720a7731a01a0f1.tar.gz drakx-7793c34be4c62fe10518191ad720a7731a01a0f1.tar.bz2 drakx-7793c34be4c62fe10518191ad720a7731a01a0f1.tar.xz drakx-7793c34be4c62fe10518191ad720a7731a01a0f1.zip |
fix indentation
-rw-r--r-- | perl-install/install_steps_interactive.pm | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index b26158a8d..ac959d875 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -268,11 +268,14 @@ sub ask_mntpoint_s { #- }{} $o->ask_from_({ messages => N("Choose the mount points"), interactive_help_id => 'ask_mntpoint_s', }, - [ map { { label => partition_table::description($_), - val => \$_->{mntpoint}, - not_edit => 0, - list => [ '', fsedit::suggestions_mntpoint(fs::get::empty_all_hds()) ] } - } grep { !$_->{real_mntpoint} || common::usingRamdisk() } @fstab ]) or return; + [ map { + { + label => partition_table::description($_), + val => \$_->{mntpoint}, + not_edit => 0, + list => [ '', fsedit::suggestions_mntpoint(fs::get::empty_all_hds()) ], + }; + } grep { !$_->{real_mntpoint} || common::usingRamdisk() } @fstab ]) or return; } $o->SUPER::ask_mntpoint_s($fstab); } |