diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-11-19 09:26:30 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-11-19 09:26:30 +0000 |
commit | 333b1b8d5393390536b70dc6e4ab31c8fdceb46e (patch) | |
tree | 9b93b8d837c22ed6b4b8d030abb767fb2fce059b /perl-install | |
parent | 74807b3c4ce0d92795fc3bb7f248cb538ad85fcd (diff) | |
download | drakx-333b1b8d5393390536b70dc6e4ab31c8fdceb46e.tar drakx-333b1b8d5393390536b70dc6e4ab31c8fdceb46e.tar.gz drakx-333b1b8d5393390536b70dc6e4ab31c8fdceb46e.tar.bz2 drakx-333b1b8d5393390536b70dc6e4ab31c8fdceb46e.tar.xz drakx-333b1b8d5393390536b70dc6e4ab31c8fdceb46e.zip |
remove debug code from previous commit
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fs/format.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/format.pm b/perl-install/fs/format.pm index 4b68f6cc3..b1ec85e2f 100644 --- a/perl-install/fs/format.pm +++ b/perl-install/fs/format.pm @@ -121,7 +121,7 @@ sub part_raw { my @args = ($cmd, @first_options, @options, devices::make($dev)); if ($cmd eq 'mkfs.ext3' && $wait_message) { - #DEBUG: mkfs_ext3($wait_message, @args) or die N("%s formatting of %s failed", $fs_type, $dev); + mkfs_ext3($wait_message, @args) or die N("%s formatting of %s failed", $fs_type, $dev); } else { run_program::raw({ timeout => 'never' }, @args) or die N("%s formatting of %s failed", $fs_type, $dev); } |