Merge remote-tracking branch 'origin/fastpath'

* origin/fastpath:
  Python 3 compatibility fix for coverage-calc script
This commit is contained in:
Johanna Amann 2016-10-25 09:28:44 -07:00
commit 784fc7f042

View file

@ -56,4 +56,4 @@ for k in stats:
num_covered += 1 num_covered += 1
if len(stats) > 0: 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))