changeset 09de986d003a in /home/hg/repos/gajim
details:http://hg.gajim.org/gajim?cmd=changeset;node=09de986d003a
description: Fix var name
diffstat:
src/common/connection_handlers_events.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (14 lines):
diff -r 0075eac50cb3 -r 09de986d003a src/common/connection_handlers_events.py
--- a/src/common/connection_handlers_events.py Thu Dec 02 13:42:45 2010 +0300
+++ b/src/common/connection_handlers_events.py Fri Dec 03 01:33:12 2010 +0300
@@ -1296,8 +1296,8 @@
self.ssl_msg = ''
if self.errnum > 0:
from common.connection import ssl_error
- self.ssl_msg = ssl_error.get(errnum, _('Unknown SSL error: %d') % \
- errnum)
+ self.ssl_msg = ssl_error.get(self.errnum, _(
+ 'Unknown SSL error: %d') % self.errnum)
self.ssl_cert = ''
if hasattr(self.conn.connection.Connection, 'ssl_cert_pem'):
self.ssl_cert = self.conn.connection.Connection.ssl_cert_pem
_______________________________________________
Commits mailing list
[email protected]
http://lists.gajim.org/cgi-bin/listinfo/commits