diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-04-30 10:09:27 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-04-30 10:09:27 +0000 |
commit | a419039b11d02b7ef2b7f894b199b245a7876303 (patch) | |
tree | 80c4d24a153aff1c05609b529d086457fe557c49 /perl-install/interactive.pm | |
parent | c591bd073fb71703d6eb804429ed5b7e53bc538f (diff) | |
download | drakx-a419039b11d02b7ef2b7f894b199b245a7876303.tar drakx-a419039b11d02b7ef2b7f894b199b245a7876303.tar.gz drakx-a419039b11d02b7ef2b7f894b199b245a7876303.tar.bz2 drakx-a419039b11d02b7ef2b7f894b199b245a7876303.tar.xz drakx-a419039b11d02b7ef2b7f894b199b245a7876303.zip |
perl_checker compliance
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 603b5d81a..f497c438a 100644 --- a/perl-install/interactive.pm +++ b/perl-install/interactive.pm @@ -107,7 +107,7 @@ sub vnew { require 'log.pm'; #- "require log" causes some pb, perl thinking that "log" is the log() function undef *log::l; - *log::l = sub() {}; # otherwise, it will bother us :( + *log::l = sub {}; # otherwise, it will bother us :( require interactive::newt; interactive::newt->new; } |