add missing arg

This commit is contained in:
Yann Leboulanger 2005-11-06 10:42:29 +00:00
parent 6d3fe8e459
commit 5a0a33681a
1 changed files with 1 additions and 1 deletions

View File

@ -1489,7 +1489,7 @@ class Connection:
if gajim.verbose:
con = common.xmpp.Client(hostname, caller = self)
else:
con = common.xmpp.Client(hostname, debug = [])
con = common.xmpp.Client(hostname, debug = [], caller = self)
common.xmpp.dispatcher.DefaultTimeout = try_connecting_for_foo_secs
con.UnregisterDisconnectHandler(con.DisconnectHandler)
con.RegisterDisconnectHandler(self._disconnectedReconnCB)