diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-09-16 20:02:14 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-09-16 20:02:14 +0100 |
commit | ada9ca9514f97fe92a4dbcf2c51cf0f87f2194d2 (patch) | |
tree | e0182212f5a8c82255de654c20bd600c8b27460d | |
parent | 75c635b7aa0c5fd779b1735ff01b69cdbd892d0a (diff) | |
download | sos-ada9ca9514f97fe92a4dbcf2c51cf0f87f2194d2.tar.gz |
[multipath] fix add_cmd_output usage
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/multipath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/multipath.py b/sos/plugins/multipath.py index d3e1fd7f..cc3d84e5 100644 --- a/sos/plugins/multipath.py +++ b/sos/plugins/multipath.py @@ -27,7 +27,7 @@ class Multipath(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): "/etc/multipath/", "/etc/multipath.conf" ]) - self.add_cmd_output([ + self.add_cmd_outputs([ "multipath -l", "multipath -v4 -ll" ]) |