diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-04-12 23:56:21 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-04-12 23:56:21 +0000 |
commit | 33876d96b93d796507af8dd46be3b9aba579d2b0 (patch) | |
tree | 2a6b030d080434295a126076b4727b891e5667e8 /perl-install/interactive.pm | |
parent | 66b03c87eb3e94bd4eb764d97cd7aaf3ca7f52f9 (diff) | |
download | drakx-33876d96b93d796507af8dd46be3b9aba579d2b0.tar drakx-33876d96b93d796507af8dd46be3b9aba579d2b0.tar.gz drakx-33876d96b93d796507af8dd46be3b9aba579d2b0.tar.bz2 drakx-33876d96b93d796507af8dd46be3b9aba579d2b0.tar.xz drakx-33876d96b93d796507af8dd46be3b9aba579d2b0.zip |
no_comment
Diffstat (limited to 'perl-install/interactive.pm')
-rw-r--r-- | perl-install/interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm index 55abb5b23..e09838d6b 100644 --- a/perl-install/interactive.pm +++ b/perl-install/interactive.pm @@ -93,7 +93,7 @@ sub ask_from_list_ { sub ask_from_list { my ($o, $title, $message, $l, $def) = @_; - @$l == 0 and die ''; + @$l == 0 and die 'ask_from_list: empty list'; @$l == 1 and return $l->[0]; goto &ask_from_list2; } |