From f262486352fcc82249f7ce89aed62207b0a24bea Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Fri, 4 Nov 2005 15:36:25 +0000 Subject: [PATCH] fix syntax error --- src/common/connection.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/connection.py b/src/common/connection.py index 8fecd8ec1..5787817ac 100644 --- a/src/common/connection.py +++ b/src/common/connection.py @@ -1557,8 +1557,9 @@ class Connection: self.dispatch('ERROR', (_('Could not connect to "%s"') % h, _('Check your connection or try again later.'))) return None, '' + gajim.log.debug(_('Connected to server %s:%s with %s') % (host['host'], - host['port'], con_type) + host['port'], con_type)) return con, con_type def connect_and_auth(self):