diff options
-rw-r--r-- | sos/plugins/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/__init__.py b/sos/plugins/__init__.py index 56af847a..41f4f58c 100644 --- a/sos/plugins/__init__.py +++ b/sos/plugins/__init__.py @@ -64,7 +64,7 @@ def _mangle_command(command, name_max): def _path_in_path_list(path, path_list): - return any(p in path for p in path_list) + return any(p == path for p in path_list) def _node_type(st): |