Skip to content
Snippets Groups Projects
Commit c92c99a7 authored by Bruce Flynn's avatar Bruce Flynn
Browse files

fix edosl0info crash due to bad format string

parent a83afeda
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ def main():
print("Last: %s" % last)
for apid, dat in info.items():
total += dat['count']
print("%d: count=%d missing=%d", apid, dat['count'], dat['num_missing'])
print("%d: count=%d missing=%d" % (apid, dat['count'], dat['num_missing']))
print("{} total packets".format(total))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment