diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-22 20:00:06 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-22 20:00:06 +0000 |
commit | 568cc7c168e09ca61e6a6652ad0ab597fa5b6421 (patch) | |
tree | 7ae6b93d322db1543350608f9dba88007fa23f14 /Wiztemplate.pm | |
parent | 1d8f4f1511ffe1a3e499e089b126397f1d9d0af4 (diff) | |
download | drakwizard-568cc7c168e09ca61e6a6652ad0ab597fa5b6421.tar drakwizard-568cc7c168e09ca61e6a6652ad0ab597fa5b6421.tar.gz drakwizard-568cc7c168e09ca61e6a6652ad0ab597fa5b6421.tar.bz2 drakwizard-568cc7c168e09ca61e6a6652ad0ab597fa5b6421.tar.xz drakwizard-568cc7c168e09ca61e6a6652ad0ab597fa5b6421.zip |
perl_checker fixes
Diffstat (limited to 'Wiztemplate.pm')
-rwxr-xr-x | Wiztemplate.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Wiztemplate.pm b/Wiztemplate.pm index 737ed509..68a19f33 100755 --- a/Wiztemplate.pm +++ b/Wiztemplate.pm @@ -19,7 +19,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -package WizTemplate; +package Wiztemplate; use strict; use common; @@ -34,7 +34,7 @@ my $o = { ip2 => '' }, needed_packages => [], - defaultimage => "$ENV{__WIZ_HOME__}", + defaultimage => $ENV{__WIZ_HOME__}, }; $o->{pages} = { @@ -82,7 +82,7 @@ $o->{pages} = { }; sub new { - my ($class, $conf) = @_; + my ($class) = @_; bless { o => $o, }, $class; |