Skip to content

Commit

Permalink
[jsk_tools/audible_warning] Fixed namespace of diagnostics
Browse files Browse the repository at this point in the history
  • Loading branch information
iory committed May 16, 2022
1 parent e513f13 commit c8ec9b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsk_tools/src/jsk_tools/diagnostics_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def filter_diagnostics_status_list(status_list, blacklist):
"""
ret = {}
for s in status_list:
ns = s.name.split()[0]
ns = s.name
if is_leaf(ns) is False:
continue
if any(filter(lambda n: n in ns, blacklist)):
Expand Down

0 comments on commit c8ec9b8

Please sign in to comment.