From 5ab77c745270d7d5c016c1dc7ef2a82533a4b16e Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Thu, 17 Jul 2014 14:19:04 +0200 Subject: Rename to slixmpp --- slixmpp/thirdparty/__init__.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 slixmpp/thirdparty/__init__.py (limited to 'slixmpp/thirdparty/__init__.py') diff --git a/slixmpp/thirdparty/__init__.py b/slixmpp/thirdparty/__init__.py new file mode 100644 index 00000000..fd6b5f72 --- /dev/null +++ b/slixmpp/thirdparty/__init__.py @@ -0,0 +1,12 @@ +try: + from collections import OrderedDict +except: + from slixmpp.thirdparty.ordereddict import OrderedDict + +try: + from gnupg import GPG +except: + from slixmpp.thirdparty.gnupg import GPG + +from slixmpp.thirdparty import socks +from slixmpp.thirdparty.mini_dateutil import tzutc, tzoffset, parse_iso -- cgit v1.2.3