From 28ba90ef3d044352780b78440c3be91d9104137c Mon Sep 17 00:00:00 2001 From: Floyd Hightower Date: Wed, 18 Oct 2017 10:29:19 -0400 Subject: [PATCH] Fixing remaining python2 print statements --- iocp/Output.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"])