[andreasvc] fix a string
This commit is contained in:
parent
6617093c42
commit
49b4eff2cc
|
@ -1925,7 +1925,7 @@ class Connection:
|
||||||
if self.connection:
|
if self.connection:
|
||||||
self.connection.Process(timeout)
|
self.connection.Process(timeout)
|
||||||
except:
|
except:
|
||||||
gajim.log.debug(_('error appeared while processing xmpp:'))
|
gajim.log.debug(_('A protocol error has occured:'))
|
||||||
traceback.print_exc()
|
traceback.print_exc()
|
||||||
self.connected = 0
|
self.connected = 0
|
||||||
self.dispatch('STATUS', 'offline')
|
self.dispatch('STATUS', 'offline')
|
||||||
|
@ -1934,7 +1934,7 @@ class Connection:
|
||||||
try:
|
try:
|
||||||
self.connection.disconnect()
|
self.connection.disconnect()
|
||||||
except:
|
except:
|
||||||
gajim.log.debug(_('error appeared while processing xmpp:'))
|
gajim.log.debug(_('A protocol error has occured:'))
|
||||||
traceback.print_exc()
|
traceback.print_exc()
|
||||||
self.connection = None
|
self.connection = None
|
||||||
# END Connection
|
# END Connection
|
||||||
|
|
Loading…
Reference in New Issue