Fix: incorrect list + string concatenation (issue #64)

This commit is contained in:
Matúš Honěk 2015-08-14 16:55:54 +02:00
parent db4b16e50c
commit c9529b5977
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ def is_fubar(results):
fubar = True
if int(conn['pubkey'][0]) < 2048:
has_wrong_pubkey = True
logging.debug(conn['pubkey'] + ' is a fubar pubkey size')
logging.debug(conn['pubkey'][0] + ' is a fubar pubkey size')
fubar = True
if conn['pfs'] != 'None':
if not has_good_pfs(conn['pfs'], 1024, 160):