diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-09-02 16:17:36 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-09-02 16:17:36 +0000 |
commit | 9ce2905f2abe4bbb435428da25201a34c727d108 (patch) | |
tree | 447ee00bb0e51595b65e42f661029481e5285df4 | |
parent | db950c1c5b5ed1a16c37839797aa6e9032d3267d (diff) | |
download | drakx-9ce2905f2abe4bbb435428da25201a34c727d108.tar drakx-9ce2905f2abe4bbb435428da25201a34c727d108.tar.gz drakx-9ce2905f2abe4bbb435428da25201a34c727d108.tar.bz2 drakx-9ce2905f2abe4bbb435428da25201a34c727d108.tar.xz drakx-9ce2905f2abe4bbb435428da25201a34c727d108.zip |
perl_checker fix
-rw-r--r-- | perl-install/standalone/drakhelp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakhelp b/perl-install/standalone/drakhelp index 22cca2fe1..6459e8cff 100644 --- a/perl-install/standalone/drakhelp +++ b/perl-install/standalone/drakhelp @@ -23,7 +23,7 @@ Usage: ") . N(" --id <id_label> - load the html help page which refers to id_label ") . N(" --doc <link> - link to another web page ( for WM welcome frontend) "); - exit(0) + exit(0); } my ($opt, $idlabel) = @ARGV; @ARGV == 2 && ($opt eq '--id' || $opt eq '--doc' || $opt eq '--help') or usage(); |