in reply to Net::Telnet Padre Error

But the op isn't getting the error:

Can't locate Net/Telnet.pm in @INC

Op, what do your use statements look like?

Replies are listed 'Best First'.
Re^2: Net::Telnet Padre Error
by mizmaster22 (Novice) on Jun 17, 2011 at 17:12 UTC

    use Net::Telnet ();

    $pop = new Net::Telnet (Telnetmode => 1, Input_log => $file, dump_log => $file1);

      Try rewriting that as:
      use Net::Telnet; my $pop = Net::Telnet->new(Telnetmode => 1, Input_log => $file, dump_l +og => $file1);
      HTH,

      Paul

        I tried that and I am still getting the same error message. I am thinking it has something to do with my PATH environment variable. I have Padre saved on the C: drive, but it just can not seem to find Net::Telnet.