fixed typo

This commit is contained in:
Daniel Gultsch 2015-07-28 22:17:28 +02:00
parent 48de2ee744
commit ceaa132978
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ if __name__ == "__main__":
server.socket = ssl.wrap_socket(server.socket, keyfile=config['http_keyfile'], certfile=config['http_certfile'])
jid = config['component_jid']
secret = config['component_secret']
port = int(config.get('component_port',5347)
port = int(config.get('component_port',5347))
xmpp = MissingComponent(jid,secret,port)
if xmpp.connect():
xmpp.process()