Skip to content
Snippets Groups Projects
Commit c9a00acb authored by Henning Glawe's avatar Henning Glawe
Browse files

Merge branch 'master' into cleanup_annotate

Conflicts:
	common/python/nomadcore/simple_parser.py
parents 87bab142 0d702169
Branches
Tags
No related merge requests found
...@@ -9,6 +9,7 @@ from nomadcore import compact_sha ...@@ -9,6 +9,7 @@ from nomadcore import compact_sha
import json import json
import os, re import os, re
from nomadcore.json_support import jsonCompactS, jsonCompactD, jsonIndentD from nomadcore.json_support import jsonCompactS, jsonCompactD, jsonIndentD
from io import open
"""objects to handle a local InfoKinds with unique name (think self written json)""" """objects to handle a local InfoKinds with unique name (think self written json)"""
class InfoKindEl(object): class InfoKindEl(object):
......
...@@ -739,7 +739,7 @@ class CompiledMatcher(object): ...@@ -739,7 +739,7 @@ class CompiledMatcher(object):
result['matcherName'] = 'coverageIgnore' result['matcherName'] = 'coverageIgnore'
result['matchFlags'] = ( result['matchFlags'] = (
result['match'] | (result['coverageIgnore'] << 2) | result['match'] | (result['coverageIgnore'] << 2) |
targetStartEnd << 5 | int(result['matcher_does_nothing']) << 6) targetStartEnd << 5 | int(result['matcher_does_nothing'] and result['match']) << 6)
return result return result
def handleMatchTelemetry(self, parser, match, line, targetStartEnd): def handleMatchTelemetry(self, parser, match, line, targetStartEnd):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment