Subject: | Time::Piece::strptime BUG |
Name : perl-Time-Piece
Version : 2.00_01
Repository, http://dag.wieers.com/apt/
perl-Time-Piece-2.00_01-1.2.el4.rf.src.rpm
URL : http://search.cpan.org/dist/Time-Piece/
Hello,
In Piece.pm,v 1.21, the following
Time::Piece::strptime(/usr/lib/perl5/vendor_perl/5.8.5/i386-linux-thread-multi/Time/Piece.pm:234):
234: my $Strp = new DateTime::Format::Strptime(
235: pattern => $format,
236: language => 'English',
237: time_zone => (ref($time) ?
$time->time_zone : 'UTC'),
238: );
Is is incompatible with:
Name : perl-DateTime-Format-Strptime
Version : 1.0700
Repository, http://dag.wieers.com/apt/
Release : 1.2.el4.rf
perl-DateTime-Format-Strptime-1.0700-1.2.el4.rf.src.rpm
URL : http://search.cpan.org/dist/DateTime-Format-Strptime/
Should be:
my $Strp = new DateTime::Format::Strptime(
pattern => '%T',
locale => 'en_AU',
time_zone => 'Australia/Melbourne',
);