diff --git a/iocp/Output.py b/iocp/Output.py index dbebe80..1e7e26a 100644 --- a/iocp/Output.py +++ b/iocp/Output.py @@ -114,7 +114,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 = { @@ -123,4 +123,4 @@ def print_match(self, fpath, page, name, match): } if data["type"] == "IP": - print " or host %s " % data["match"] + print(" or host %s " % data["match"])