Subject: | Bug in IMDB-Film |
Date: | Fri, 25 Apr 2008 23:36:44 -0400 |
To: | bug-IMDB-Film [...] rt.cpan.org |
From: | Thomas Ullrich <thomas.ullrich [...] bnl.gov> |
IMDB-Film Version 0.32
Perl version v5.8.6
Darwin gorilla.local 8.11.1 Darwin Kernel Version 8.11.1: Wed Oct 10
18:23:28 PDT 2007; root:xnu-792.25.20~1/RELEASE_I386 i386 i386
There seems to be a problem with certificate(). It was working the last
time I used it, which was a while ago (several weeks).
my $film = new IMDB::Film(crit => $ARGV[0], debug => 0);
my @cert = $film->certifications();
# ...
$txt = "MPAA: ";
foreach my $crtr (@cert) {
$txt .= $crtr->{'USA'};
}
return zip for every movie I checked. I verified that the field on their
web site exists for the US.
Thomas