summaryrefslogtreecommitdiffstats
path: root/perl-install/install_interactive.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_interactive.pm')
-rw-r--r--perl-install/install_interactive.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_interactive.pm b/perl-install/install_interactive.pm
index b9ee10de7..53c92d2ed 100644
--- a/perl-install/install_interactive.pm
+++ b/perl-install/install_interactive.pm
@@ -7,7 +7,7 @@ use vars;
use common;
use partition_table qw(:types);
-use partition_table_raw;
+use partition_table::raw;
use detect_devices;
use install_steps;
use devices;
@@ -180,7 +180,7 @@ When sure, press Ok.")) or return;
\&partition_table::description, $hds) or return;
$o->set_help('takeOverHdConfirm');
$o->ask_okcancel('', _("ALL existing partitions and their data will be lost on drive %s", partition_table::description($hd))) or return;
- partition_table_raw::zero_MBR($hd);
+ partition_table::raw::zero_MBR($hd);
fsedit::auto_allocate($all_hds);
1;
} ];