summaryrefslogtreecommitdiffstats
path: root/modules/clock.py
diff options
context:
space:
mode:
authorSean B. Palmer <http://inamidst.com/sbp/>2008-12-28 09:42:48 +0000
committerSean B. Palmer <http://inamidst.com/sbp/>2008-12-28 09:42:48 +0000
commitf9aff27534df2efe64d50c01864925f6fe4cd746 (patch)
treebe37bc304b69c9f6134672813a7982f7396cfa07 /modules/clock.py
parentd26fc8d81f88f92eb798e28c49b9990dbc73bc14 (diff)
downloadbot-f9aff27534df2efe64d50c01864925f6fe4cd746.tar.gz
bot-f9aff27534df2efe64d50c01864925f6fe4cd746.tar.bz2
bot-f9aff27534df2efe64d50c01864925f6fe4cd746.zip
Minor bug fixes.
Diffstat (limited to 'modules/clock.py')
-rwxr-xr-xmodules/clock.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/modules/clock.py b/modules/clock.py
index 59c9eb1..d1983ce 100755
--- a/modules/clock.py
+++ b/modules/clock.py
@@ -135,7 +135,7 @@ TZ2 = {
'HST': 10,
'IDLE': -12,
'IDLW': 12,
- 'IST': -5.5,
+ # 'IST': -5.5,
'IT': -3.5,
'JST': -9,
'JT': -7,
@@ -181,8 +181,14 @@ TZ2 = {
'ZP6': -6
}
-TimeZones.update(TZ2)
+TZ3 = {
+ 'AEST': 10,
+ 'AEDT': 11
+}
+
+# TimeZones.update(TZ2) # do these have to be negated?
TimeZones.update(TZ1)
+TimeZones.update(TZ3)
@deprecated
def f_time(self, origin, match, args):