From d12be649867374393a53c5ef9098dfa5c6cdfee9 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 6 Dec 2013 21:27:53 +0100 Subject: [PATCH] minor code improvement --- src/common/connection.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/common/connection.py b/src/common/connection.py index fc4adc45c..f40452843 100644 --- a/src/common/connection.py +++ b/src/common/connection.py @@ -1383,8 +1383,7 @@ class Connection(CommonConnection, ConnectionHandlers): errnum = con.Connection.ssl_errnum except AttributeError: errnum = [] # we don't have an errnum - i = 0 - for er in errnum: + for i, er in enumerate(errnum): if er > 0 and str(er) not in gajim.config.get_per('accounts', self.name, 'ignore_ssl_errors').split(): text = _('The authenticity of the %s certificate could be '