diff options
author | Lance Stout <lancestout@gmail.com> | 2012-07-23 21:45:24 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-07-24 01:43:20 -0700 |
commit | 352ee2f2fd6458a46e046ecaedb78addd5d6ac20 (patch) | |
tree | 793d2d736d7bb19fc6a72127344904ae332f073c /sleekxmpp/__init__.py | |
parent | 78aa5c3dfa6432833877390f4bf48e3b5c442d2b (diff) | |
download | slixmpp-352ee2f2fd6458a46e046ecaedb78addd5d6ac20.tar.gz slixmpp-352ee2f2fd6458a46e046ecaedb78addd5d6ac20.tar.bz2 slixmpp-352ee2f2fd6458a46e046ecaedb78addd5d6ac20.tar.xz slixmpp-352ee2f2fd6458a46e046ecaedb78addd5d6ac20.zip |
Fix JID validation bugs, add lots of tests.
Diffstat (limited to 'sleekxmpp/__init__.py')
-rw-r--r-- | sleekxmpp/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/__init__.py b/sleekxmpp/__init__.py index 84b1114f..f0dc2ce2 100644 --- a/sleekxmpp/__init__.py +++ b/sleekxmpp/__init__.py @@ -10,7 +10,7 @@ from sleekxmpp.basexmpp import BaseXMPP from sleekxmpp.clientxmpp import ClientXMPP from sleekxmpp.componentxmpp import ComponentXMPP from sleekxmpp.stanza import Message, Presence, Iq -from sleekxmpp.jid import JID +from sleekxmpp.jid import JID, InvalidJID from sleekxmpp.xmlstream.handler import * from sleekxmpp.xmlstream import XMLStream, RestartStream from sleekxmpp.xmlstream.matcher import * |