fix syntax error

This commit is contained in:
Nikos Kouremenos 2005-11-04 15:36:25 +00:00
parent 5414ac84dc
commit f262486352
1 changed files with 2 additions and 1 deletions

View File

@ -1557,8 +1557,9 @@ class Connection:
self.dispatch('ERROR', (_('Could not connect to "%s"') % h, self.dispatch('ERROR', (_('Could not connect to "%s"') % h,
_('Check your connection or try again later.'))) _('Check your connection or try again later.')))
return None, '' return None, ''
gajim.log.debug(_('Connected to server %s:%s with %s') % (host['host'], gajim.log.debug(_('Connected to server %s:%s with %s') % (host['host'],
host['port'], con_type) host['port'], con_type))
return con, con_type return con, con_type
def connect_and_auth(self): def connect_and_auth(self):