From 99cd34f57d2fe2c86bfd831096a7d4ddcbf05d2d Mon Sep 17 00:00:00 2001 From: Daniel Thayer Date: Fri, 21 Oct 2016 09:33:04 -0500 Subject: [PATCH] Python 3 compatibility fix for coverage-calc script --- testing/scripts/coverage-calc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/scripts/coverage-calc b/testing/scripts/coverage-calc index cc5253c75c..df12e0c86f 100755 --- a/testing/scripts/coverage-calc +++ b/testing/scripts/coverage-calc @@ -56,4 +56,4 @@ for k in stats: num_covered += 1 if len(stats) > 0: - print "%s/%s (%.1f%%) Bro script statements covered." % (num_covered, len(stats), float(num_covered)/len(stats)*100) + print("%s/%s (%.1f%%) Bro script statements covered." % (num_covered, len(stats), float(num_covered)/len(stats)*100))