mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-23 19:19:53 +00:00
4d8933abdf
If dateutil is present, we'll use that. If not, we'll use some regexes from the fixed_datetime module.
7 lines
229 B
Python
7 lines
229 B
Python
try:
|
|
from collections import OrderedDict
|
|
except:
|
|
from sleekxmpp.thirdparty.ordereddict import OrderedDict
|
|
|
|
from sleekxmpp.thirdparty import suelta
|
|
from sleekxmpp.thirdparty.mini_dateutil import tzutc, tzoffset, parse_iso
|