Fix for change in list handling behavior in Python 3
This commit is contained in:
parent
6667ffd1f1
commit
dd1d69ad82
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ if __name__ == "__main__":
|
|||
category["percent"] = (category["covered"] / float(category["total"])) * 100
|
||||
|
||||
# render section header
|
||||
cat_messages = sorted(category["messages"].items())
|
||||
cat_messages = list(category["messages"].items())
|
||||
cat_keys = cat_messages[0][1].keys()
|
||||
headers_html = ""
|
||||
colspan = 10 - len(cat_keys)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue