gwhite has asked for the wisdom of the Perl Monks concerning the following question:
my( $year, $month, $day, $hour, $minute, $seconds ) = (localtime)[5,4, +3,2,1,0]; $year += 1900; $month += 1; my $source = DateTime->new(year => $year, month => $month, day => $day, hour => $hour, minute => $minute, second => $seconds, nanosecond => 1, time_zone => 'America/Chicago'); my $result = $source->clone() ->set_time_zone('Australia/Sydney'); print $result->now();
produces this error: Program fragment delivered error ``Can't locate object method "_normalize_nanoseconds" via package "2009-08-26T00:59:20" at /usr/local/lib/perl5/site_perl/5.8.8/mach/DateTime.pm line 207.''
sub _normalize_nanoseconds is in the DateTime.pm file. Any suggestions on what I am doing wrong?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: DateTime normalize
by toolic (Bishop) on Aug 25, 2009 at 16:08 UTC | |
by ikegami (Patriarch) on Aug 25, 2009 at 17:25 UTC | |
Re: DateTime normalize
by Herkum (Parson) on Aug 26, 2009 at 03:26 UTC | |
Re: DateTime normalize
by perlkiller (Acolyte) on Aug 26, 2009 at 04:03 UTC | |
Re: DateTime normalize
by astroboy (Chaplain) on Aug 26, 2009 at 05:00 UTC |