Skip to content

Commit

Permalink
correct call to metadata reset + add verbose to dump auto-completion
Browse files Browse the repository at this point in the history
  • Loading branch information
shancock884 committed Feb 16, 2024
1 parent 10f4153 commit 03eb2e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MAVProxy/tools/MAVExplorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def __init__(self):
"set" : ["(SETTING)"],
"condition" : ["(VARIABLE)"],
"graph" : ['(VARIABLE) (VARIABLE) (VARIABLE) (VARIABLE) (VARIABLE) (VARIABLE) (VARIABLE) (VARIABLE) (VARIABLE) (VARIABLE) (VARIABLE) (VARIABLE)'],
"dump" : ['(MESSAGETYPE)'],
"dump" : ['(MESSAGETYPE)', '--verbose (MESSAGETYPE)'],
"map" : ['(VARIABLE) (VARIABLE) (VARIABLE) (VARIABLE) (VARIABLE)'],
"param" : ['download', 'check', 'help (PARAMETER)'],
"logmessage": ['download', 'help (MESSAGETYPE)'],
Expand Down Expand Up @@ -1206,7 +1206,7 @@ def cmd_logmessage(args):
except Exception as e:
print(e)
if hasattr(mlog,'metadata'):
mlog.metadata.reload()
mlog.metadata.reset()
return
# Print usage if we've dropped through the ifs
print(usage)
Expand Down

0 comments on commit 03eb2e6

Please sign in to comment.