summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0082.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-08-04 20:20:22 -0700
committerLance Stout <lancestout@gmail.com>2011-08-04 20:22:07 -0700
commit4d8933abdf4a190493f2762d423f469f6d8b30a9 (patch)
treee538d4b0c390b54e411e3d67f8fb09ff3ab28bd5 /sleekxmpp/plugins/xep_0082.py
parent6eac0606cf5cd0b7777eb86b77ed1b061dd4b658 (diff)
downloadslixmpp-4d8933abdf4a190493f2762d423f469f6d8b30a9.tar.gz
slixmpp-4d8933abdf4a190493f2762d423f469f6d8b30a9.tar.bz2
slixmpp-4d8933abdf4a190493f2762d423f469f6d8b30a9.tar.xz
slixmpp-4d8933abdf4a190493f2762d423f469f6d8b30a9.zip
Actually, we can work around needing dateutil.
If dateutil is present, we'll use that. If not, we'll use some regexes from the fixed_datetime module.
Diffstat (limited to 'sleekxmpp/plugins/xep_0082.py')
-rw-r--r--sleekxmpp/plugins/xep_0082.py13
1 files changed, 4 insertions, 9 deletions
diff --git a/sleekxmpp/plugins/xep_0082.py b/sleekxmpp/plugins/xep_0082.py
index e78a50ad..d3c4cc56 100644
--- a/sleekxmpp/plugins/xep_0082.py
+++ b/sleekxmpp/plugins/xep_0082.py
@@ -10,13 +10,7 @@ import logging
import datetime as dt
from sleekxmpp.plugins.base import base_plugin
-
-try:
- from dateutil import parser
- from dateutil.tz import tzoffset, tzutc
-except e:
- log = logging.getLogger(__name__)
- log.warning("XEP-0082 plugin requires dateutil")
+from sleekxmpp.thirdparty import tzutc, tzoffset, parse_iso
# =====================================================================
@@ -31,7 +25,8 @@ def parse(time_str):
Arguments:
time_str -- A formatted timestamp string.
"""
- return parser.parse(time_str)
+ return parse_iso(time_str)
+
def format_date(time_obj):
"""
@@ -52,7 +47,7 @@ def format_time(time_obj):
Return a formatted string version of a time object.
format:
- hh:mm:ss[.sss][TZD
+ hh:mm:ss[.sss][TZD]
arguments:
time_obj -- A time or datetime object.