diff options
author | Pavel Moravec <pmoravec@redhat.com> | 2018-06-21 22:15:31 +0200 |
---|---|---|
committer | Pavel Moravec <pmoravec@redhat.com> | 2018-06-21 22:15:31 +0200 |
commit | e8be1df8237bf13ca3acbff19dfdf51720ff6a75 (patch) | |
tree | 730fe34aeac059eab35ad59b31338fe7165da5fc | |
parent | 6d09c48c1faa4e08d53c57124c19fa3c8ec9e8bd (diff) | |
download | sos-e8be1df8237bf13ca3acbff19dfdf51720ff6a75.tar.gz |
[infiniband] fix ports_cmds typo
Resolves: #1358
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
-rw-r--r-- | sos/plugins/infiniband.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/infiniband.py b/sos/plugins/infiniband.py index 8e74817c..2374f344 100644 --- a/sos/plugins/infiniband.py +++ b/sos/plugins/infiniband.py @@ -78,6 +78,6 @@ class Infiniband(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): continue opts = "-C %s -P %s" % (ib, port) - self.add_cmd_output(["%s %s" % (c, opts) for c in port_cmds]) + self.add_cmd_output(["%s %s" % (c, opts) for c in ports_cmds]) # vim: set et ts=4 sw=4 : |