Subject: | Invalid offset: CST |
Hello Dave,
Thanks for your hard work on DateTime, I saw your speech in YACP::NA in Houston, very
excellent! Anywho, Its not recognizing CST as a valid offset which shoudl be valid unless I;m
just waaay off (which is possible ;p)
For example, below, EST is good but CST throws an error.
multivac:~ dmuey$ perl -le 'use DateTime;print DateTime->now(time_zone=>"EST")-
Show quoted text
>strftime("%F %r");'
2008-01-07 12:27:43 AM
multivac:~ dmuey$ dateSun Jan 6 23:27:52 CST 2008
multivac:~ dmuey$ perl -le 'use DateTime;print DateTime->now(time_zone=>"CST")-
Show quoted text>strftime("%F %r");'
Invalid offset: CST
multivac:~ dmuey$
multivac:~ dmuey$ perl -MDateTime -le 'print $DateTime::VERSION;'
0.41
multivac:~ dmuey$