diff options
Diffstat (limited to 'parse/ft.py')
-rw-r--r-- | parse/ft.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parse/ft.py b/parse/ft.py index 868c8ca..20a430e 100644 --- a/parse/ft.py +++ b/parse/ft.py | |||
@@ -49,7 +49,7 @@ def extract_ft_data(data_file, result, overheads): | |||
49 | 49 | ||
50 | for ovh in overheads: | 50 | for ovh in overheads: |
51 | measure = Measurement("%s-%s" % (data_file, ovh)) | 51 | measure = Measurement("%s-%s" % (data_file, ovh)) |
52 | vals = re.findall(".*{}".format(ovh) + rstr, data); | 52 | vals = re.findall(r"\s+{}".format(ovh.replace('_','-')) + rstr, data); |
53 | if len(vals) != 0: | 53 | if len(vals) != 0: |
54 | vals = vals[0] | 54 | vals = vals[0] |
55 | measure[Type.Max] = float(vals[0]) | 55 | measure[Type.Max] = float(vals[0]) |