From eaa1ba87561728851cd99ea2ae60ecb050c57c71 Mon Sep 17 00:00:00 2001 From: Abhijeet Rokade Date: Fri, 24 Feb 2023 14:34:56 +0000 Subject: [PATCH] Fix SyntaxError: Missing parentheses in call to 'print' --- iocp/Output.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iocp/Output.py b/iocp/Output.py index 93b109b..60d45ba 100644 --- a/iocp/Output.py +++ b/iocp/Output.py @@ -107,7 +107,7 @@ def print_footer(self, fpath): class OutputHandler_netflow(OutputHandler): def __init__(self): - print "host 255.255.255.255" + print ("host 255.255.255.255") def print_match(self, fpath, page, name, match): data = { @@ -115,4 +115,4 @@ def print_match(self, fpath, page, name, match): 'match': match } if data["type"] == "IP": - print " or host %s " % data["match"] + print (" or host %s " % data["match"])