From be0c23b481da0882075defdab0199aa92490167f Mon Sep 17 00:00:00 2001 From: Narbeh Date: Wed, 18 Apr 2018 14:18:10 +0430 Subject: [PATCH] Fix successful Report Invalid Report --- ssl_checker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl_checker.py b/ssl_checker.py index 9665bf1..0232a67 100644 --- a/ssl_checker.py +++ b/ssl_checker.py @@ -76,7 +76,7 @@ def show_result(hosts): else: failed_cnt += 1 - print('\n{} successful and {} failed.'.format(len(hosts), failed_cnt)) + print('\n{} successful and {} failed.'.format(len(hosts) - failed_cnt, failed_cnt)) print(context)