mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Python 3 compatibility fix for coverage-calc script
This commit is contained in:
parent
e8bfa49f69
commit
99cd34f57d
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue