in reply to Can't locate object method "is_floating" via package "floating"

It's a bug in DateTime::Calendar::Hebrew. It's time_zone method is supposed to return a DateTime::TimeZone object, but it returns the string 'floating'.

Fix to DateTime-Calendar-Hebrew-0.04/Hebrew.pm:

-sub time_zone { 'floating' } +use DateTime::TimeZone::Floating qw( ); +sub time_zone { DateTime::TimeZone::Floating->new() }

Replies are listed 'Best First'.
Re^2: Can't locate object method "is_floating" via package "floating"
by Anonymous Monk on Oct 22, 2009 at 18:21 UTC
    Thanks - that fixes the problem. Now what can/should be done to get the module fixed in CPAN?