diff options
author | Lance Stout <lancestout@gmail.com> | 2010-10-06 14:03:19 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-10-06 14:03:19 -0400 |
commit | e1866ab3287ef184bbbbb4b0a7da33b4c0f6791a (patch) | |
tree | 899e70fbffb46612fab0ed992c9dc726979dfe81 /sleekxmpp/basexmpp.py | |
parent | a7410f2146a912d7302e79b38c49a57a01faee72 (diff) | |
download | slixmpp-e1866ab3287ef184bbbbb4b0a7da33b4c0f6791a.tar.gz slixmpp-e1866ab3287ef184bbbbb4b0a7da33b4c0f6791a.tar.bz2 slixmpp-e1866ab3287ef184bbbbb4b0a7da33b4c0f6791a.tar.xz slixmpp-e1866ab3287ef184bbbbb4b0a7da33b4c0f6791a.zip |
Made first pass at cleaning up ClientXMPP.
Added self.stream_ns to BaseXMPP.
Moved connected/disconnected events and logging to XMLStream.
Diffstat (limited to 'sleekxmpp/basexmpp.py')
-rw-r--r-- | sleekxmpp/basexmpp.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sleekxmpp/basexmpp.py b/sleekxmpp/basexmpp.py index 2548934e..c18dda1a 100644 --- a/sleekxmpp/basexmpp.py +++ b/sleekxmpp/basexmpp.py @@ -111,6 +111,7 @@ class BaseXMPP(XMLStream): self.sendPresenceSubscription = self.send_presence_subscription self.default_ns = default_ns + self.stream_ns = 'http://etherx.jabber.org/streams' self.jid = '' self.fulljid = '' |