From c9529b5977ae2237478e1973855be36cff672126 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=BA=C5=A1=20Hon=C4=9Bk?= Date: Fri, 14 Aug 2015 16:55:54 +0200 Subject: [PATCH] Fix: incorrect list + string concatenation (issue #64) --- analyze.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analyze.py b/analyze.py index 8e02546..7ae01da 100755 --- a/analyze.py +++ b/analyze.py @@ -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):