Merge pull request #68 from kenoh/master

Fix: incorrect list + string concatenation (issue #64)
This commit is contained in:
Julien Vehent 2015-09-18 09:27:41 -04:00
commit 3770389b5c
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,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):