diff options
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 87a49bdb9..36972a11b 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -126,7 +126,7 @@ sub real_format_part { my $check_blocks = grep { /^-c$/ } @options; swap::make($part->{device}, $check_blocks); } else { - die _("don't know how to format %s in type %s", $_->{device}, type2name($_->{type})); + die _("I don't know how to format %s in type %s", $_->{device}, type2name($_->{type})); } $part->{isFormatted} = 1; } |