mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-23 19:19:53 +00:00
fixed example
This commit is contained in:
parent
96b103b275
commit
fb3e0d85c4
1 changed files with 3 additions and 3 deletions
|
@ -1,12 +1,12 @@
|
|||
import sleekxmpp.clientxmpp
|
||||
import sleekxmpp
|
||||
import logging
|
||||
from optparse import OptionParser
|
||||
import time
|
||||
|
||||
class Example(sleekxmpp.clientxmpp.ClientXMPP):
|
||||
class Example(sleekxmpp.ClientXMPP):
|
||||
|
||||
def __init__(self, jid, password):
|
||||
sleekxmpp.clientxmpp.ClientXMPP.__init__(self, jid, password)
|
||||
sleekxmpp.ClientXMPP.__init__(self, jid, password)
|
||||
self.add_event_handler("session_start", self.start)
|
||||
self.add_event_handler("message", self.message)
|
||||
|
||||
|
|
Loading…
Reference in a new issue