Skip Menu |

This queue is for tickets about the Encode-Detect CPAN distribution.

Report information
The Basics
Id: 37390
Status: new
Priority: 0/
Queue: Encode-Detect

People
Owner: Nobody in particular
Requestors: cdavaz [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 1.01
Fixed in: (no value)



Subject: Missing "require Exporter;" in Encode::Detect::Detector
If you run test2.pl you will see that Perl can't find Exporter. You must add "require Exporter;" to the module (I added it before the @ISA) but I'm not sure if it matters where. See the docs on Exporter for more info.
Subject: test2.pl
#!/usr/local/bin/perl -w use strict; use warnings; use Encode::Detect::Detector; exit 0;