From 49b4eff2cc524ff087e73ffd0ab927bef365de34 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos <kourem@gmail.com> Date: Sat, 3 Sep 2005 12:54:45 +0000 Subject: [PATCH] [andreasvc] fix a string --- src/common/connection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/connection.py b/src/common/connection.py index 2203a4ca05..539964b171 100644 --- a/src/common/connection.py +++ b/src/common/connection.py @@ -1925,7 +1925,7 @@ def process(self, timeout): if self.connection: self.connection.Process(timeout) except: - gajim.log.debug(_('error appeared while processing xmpp:')) + gajim.log.debug(_('A protocol error has occured:')) traceback.print_exc() self.connected = 0 self.dispatch('STATUS', 'offline') @@ -1934,7 +1934,7 @@ def process(self, timeout): try: self.connection.disconnect() except: - gajim.log.debug(_('error appeared while processing xmpp:')) + gajim.log.debug(_('A protocol error has occured:')) traceback.print_exc() self.connection = None # END Connection -- GitLab