diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-19 19:20:27 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-19 19:20:27 +0000 |
commit | 47193590cbe2f3c1de7bac211464d525a87218f7 (patch) | |
tree | 0efaeec65179b7883c9dae1d9ab38cf86e5a8f6e /perl-install/standalone/drakhelp | |
parent | 6a5b9c63cb02eec0406d8b726a8c25ab6726623c (diff) | |
download | drakx-47193590cbe2f3c1de7bac211464d525a87218f7.tar drakx-47193590cbe2f3c1de7bac211464d525a87218f7.tar.gz drakx-47193590cbe2f3c1de7bac211464d525a87218f7.tar.bz2 drakx-47193590cbe2f3c1de7bac211464d525a87218f7.tar.xz drakx-47193590cbe2f3c1de7bac211464d525a87218f7.zip |
perl_checker compliance
Diffstat (limited to 'perl-install/standalone/drakhelp')
-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 d4e9d264d..4b94aefb4 100644 --- a/perl-install/standalone/drakhelp +++ b/perl-install/standalone/drakhelp @@ -16,7 +16,7 @@ die "Usage: drakhelp <help_path>" if @ARGV != 1; my $in = interactive->vnew; my $locale = lang::read('', $>); -printf("lang is %s\n",$locale->{lang}); +printf("lang is %s\n", $locale->{lang}); $locale->{lang} = 'en' unless member($locale->{lang}, qw(en es fr)); my $path2help = "/usr/share/doc/mandrake/" . $locale->{lang} . "/"; my $path = $ARGV[0] =~ /^http|^www/ ? $ARGV[0] : $path2help . $ARGV[0]; |