We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5fff32 commit 2ceb8feCopy full SHA for 2ceb8fe
html-report.py
@@ -25,7 +25,7 @@ def file2map(filepath, sep=' '):
25
pairs = [
26
line.strip().split(sep, 1)
27
for line in f.readlines()
28
- if not line == "" and not line.startswith("#")
+ if not line.strip() == "" and not line.startswith("#")
29
]
30
return {pair[0]: pair[1] for pair in pairs}
31
0 commit comments