Skip to content
Snippets Groups Projects
Commit 0906f205 authored by an7s's avatar an7s
Browse files

Handle #ATTRIBUTE and # ATTRIBUTE

Former-commit-id: 154e58ef21a5b2bfeade4722258364983b716b91
parent a28fd933
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ for log_file_path in sys.argv[1:]:
if not line or line is None:
continue
if re.search(ATTRIBUTE, line):
if re.search(ATTRIBUTE, line) or re.search(ATTRIBUTE2, line):
(attribute_name, attribute_value) = extract_attribute(line.rstrip())
if not step_name in stats:
stats[step_name] = {}
......
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