px4events: fix known_groups list

This commit is contained in:
Beat Küng 2022-05-30 08:00:45 +02:00 committed by Daniel Agar
parent fcadc69e52
commit 2507f0a143
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ class SourceParser(object):
descr = descr[:i] + ' ' + descr[i+1:]
event.description = descr
elif tag == "group":
known_groups = ["calibration", "health", "arming_check", "normal"]
known_groups = ["calibration", "health", "arming_check", "default"]
event.group = value.strip()
if not event.group in known_groups:
raise Exception("Unknown event group: '{}'\nKnown groups: {}\n" \