diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-03 05:43:23 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-03 05:43:23 +0000 |
commit | 11c559375d0d541d0f5fb489601943a4787eac7f (patch) | |
tree | b6454c0e8a233cfd27ecf2efd2c5981713604405 /perl-install/pkgs.pm | |
parent | 5f0477547b3122c61cb11f97e5d2dfac8932fcce (diff) | |
download | drakx-11c559375d0d541d0f5fb489601943a4787eac7f.tar drakx-11c559375d0d541d0f5fb489601943a4787eac7f.tar.gz drakx-11c559375d0d541d0f5fb489601943a4787eac7f.tar.bz2 drakx-11c559375d0d541d0f5fb489601943a4787eac7f.tar.xz drakx-11c559375d0d541d0f5fb489601943a4787eac7f.zip |
make perl_checker happy
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r-- | perl-install/pkgs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index c3df7fa52..63fd0d74d 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -651,7 +651,7 @@ sub readCompssUsers { my ($file) = @_; my $f = -e $file ? install_any::getLocalFile($file) : install_any::getFile($file) - or do { log::l("can not find $file: $!"); return (undef, undef) }; + or do { log::l("can not find $file: $!"); return undef, undef }; my ($compssUsers, $gtk_display_compssUsers) = eval join('', <$f>); if ($@) { log::l("ERROR: bad $file: $@"); |