diff options
author | Lance Stout <lancestout@gmail.com> | 2012-07-23 01:46:13 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-07-24 01:43:20 -0700 |
commit | d06897a635b95a62b6a14687f577a7018cab3912 (patch) | |
tree | f61f9e1dbb255832715827ca01719cd755084066 | |
parent | 1600bb0aaf58322eb8519fa000bab8891a3b9680 (diff) | |
download | slixmpp-d06897a635b95a62b6a14687f577a7018cab3912.tar.gz slixmpp-d06897a635b95a62b6a14687f577a7018cab3912.tar.bz2 slixmpp-d06897a635b95a62b6a14687f577a7018cab3912.tar.xz slixmpp-d06897a635b95a62b6a14687f577a7018cab3912.zip |
Add backwards compatibility shim for the old jid.py location.
-rw-r--r-- | sleekxmpp/xmlstream/jid.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sleekxmpp/xmlstream/jid.py b/sleekxmpp/xmlstream/jid.py new file mode 100644 index 00000000..2b59db47 --- /dev/null +++ b/sleekxmpp/xmlstream/jid.py @@ -0,0 +1,5 @@ +import logging + +logging.warning('Deprecated: sleekxmpp.xmlstream.jid is moving to sleekxmpp.jid') + +from sleekxmpp.jid import JID |