summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2015-02-20 00:36:49 -0800
committerEric Anholt <eric@anholt.net>2016-08-09 16:58:14 -0700
commitbd8c442f1112a67aa67c479e3604e27a66ca8ddf (patch)
tree60e42eb116bed57e932859712dffd8b6544dec59
parent9087c06ae5304bbcca703283589a5cefcb6744bc (diff)
Fix reporting when a category has a space in it.HEADmaster
-rwxr-xr-xreport.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/report.py b/report.py
index c6f8389..a475a65 100755
--- a/report.py
+++ b/report.py
@@ -22,7 +22,7 @@ def get_results(filename, all_result_types):
results = {}
for line in lines:
- m = re.match('SHADER-DB: (\S+): (\S+) prog (\S+): (\d+) (\S+)', line)
+ m = re.match('SHADER-DB: (\S+): (\S+) prog (\S+): (\d+) (.+)', line)
if m == None:
continue