From 0c7a3ffabeee77cb9f3d960168a357e9583b2f9f Mon Sep 17 00:00:00 2001 From: cweedon Date: Tue, 17 May 2022 12:20:28 -0500 Subject: [PATCH] Fix missing paren error added parentheses to the print call to fix the error --- Report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Report.py b/Report.py index d5cc054..1e8640a 100755 --- a/Report.py +++ b/Report.py @@ -107,7 +107,7 @@ GetResponderUsernames(cursor) print(color("\n[+] Username details:", code = 2, modifier = 1)) GetResponderUsernamesWithDetails(cursor) GetResponderUsernamesStatistic(cursor) -print color("\n[+] RunFinger Scanned Hosts:", code = 2, modifier = 1) +print (color("\n[+] RunFinger Scanned Hosts:", code = 2, modifier = 1)) cursor.close() try: cursor = FingerDbConnect()