Skip to content

Commit

Permalink
DFReader.py - swap not
Browse files Browse the repository at this point in the history
Co-authored-by: Peter Barker <[email protected]>
  • Loading branch information
shancock884 and peterbarker authored Mar 18, 2024
1 parent 580dcc9 commit 9e05766
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DFReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ def metadata_tree(self,verbose=False):
def print_help(self,msg):
'''print help for a log message'''
data = self.metadata_tree(verbose=True)
if data is None or not msg in data:
if data is None or msg not in data:
return
node = data[msg]
# Message name and description
Expand Down

0 comments on commit 9e05766

Please sign in to comment.