summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-08-27 22:03:50 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-08-27 22:03:50 +0000
commit872d116a17cfa876685883d0f9f9ec881e92a7e6 (patch)
tree58e2e111173fae5d89489a0d943a31e95a1a9275 /perl-install/diskdrake
parentbfaaea5cde6cc2b2daf37d2e5d3988ad77ce7334 (diff)
downloaddrakx-backup-do-not-use-872d116a17cfa876685883d0f9f9ec881e92a7e6.tar
drakx-backup-do-not-use-872d116a17cfa876685883d0f9f9ec881e92a7e6.tar.gz
drakx-backup-do-not-use-872d116a17cfa876685883d0f9f9ec881e92a7e6.tar.bz2
drakx-backup-do-not-use-872d116a17cfa876685883d0f9f9ec881e92a7e6.tar.xz
drakx-backup-do-not-use-872d116a17cfa876685883d0f9f9ec881e92a7e6.zip
nicer error message when no devices are available (esp. for standalone)
Diffstat (limited to 'perl-install/diskdrake')
-rw-r--r--perl-install/diskdrake/hd_gtk.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm
index d437799c5..454da1735 100644
--- a/perl-install/diskdrake/hd_gtk.pm
+++ b/perl-install/diskdrake/hd_gtk.pm
@@ -249,7 +249,7 @@ sub create_automatic_notebooks {
my $b = $_->{marked} or $notebook_widget->remove_page($::i);
$b;
} @notebook;
- @notebook or die '';
+ @notebook or die _("No hard drives found");
}
################################################################################