diff options
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 8687d694c..aaef30baf 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -33,7 +33,7 @@ sub hds($$) { foreach (@$drives) { my $file = devices::make($_->{device}); - my $hd = partition_table_raw::get_geometry($file) or die "An error occurred while getting the geometry of block device $file: $!"; + my $hd = partition_table_raw::get_geometry($file) or die _("An error occurred while getting the geometry of block device %s: %s", $file, "$!"); $hd->{file} = $file; $hd->{prefix} = $hd->{device} = $_->{device}; # for RAID arrays of format c0d0p1 |