fix for issue #143

This commit is contained in:
sn0w0tter 2019-11-21 00:57:51 +01:00
parent c28e1dde12
commit a71dc6f76c

View File

@ -142,9 +142,6 @@ class DetectionRule:
else: else:
other_tags.append(tag) other_tags.append(tag)
if not tactic_re.match(tag) and not \
technique_re.match(tag):
other_tags.append(tag)
if len(tactic): if len(tactic):
self.fields.update({'tactics': tactic}) self.fields.update({'tactics': tactic})
@ -256,9 +253,6 @@ class DetectionRule:
else: else:
other_tags.append(tag) other_tags.append(tag)
if not tactic_re.match(tag) and not \
technique_re.match(tag):
other_tags.append(tag)
if len(tactic): if len(tactic):
self.fields.update({'tactics': tactic}) self.fields.update({'tactics': tactic})