diff options
Diffstat (limited to 'sleekxmpp/clientxmpp.py')
-rw-r--r-- | sleekxmpp/clientxmpp.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sleekxmpp/clientxmpp.py b/sleekxmpp/clientxmpp.py index 023292ba..2fc13c84 100644 --- a/sleekxmpp/clientxmpp.py +++ b/sleekxmpp/clientxmpp.py @@ -30,6 +30,7 @@ try: except: SRV_SUPPORT = False + class ClientXMPP(BaseXMPP): """ @@ -241,7 +242,7 @@ class ClientXMPP(BaseXMPP): def _handle_starttls(self, xml): """ Handle notification that the server supports TLS. - + Arguments: xml -- The STARTLS proceed element. """ |