diff options
author | Sachin Patil <psachin@redhat.com> | 2018-05-19 20:40:22 +0530 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-05-24 15:32:18 +0100 |
commit | e5f8cab07f9b84d06b8fb0808a675cd6932db9a8 (patch) | |
tree | 33c247c72a8516a07d7dfde8ce3668219c20698d | |
parent | 5528ccbc2d5b45c88a979d2b14115de0905e2e83 (diff) | |
download | sos-e5f8cab07f9b84d06b8fb0808a675cd6932db9a8.tar.gz |
[SCLPlugin] fix missing 'self' in add_cmd_output_scl()
Resolves: #1302
Signed-off-by: Sachin Patil <psachin@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-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 7bb8d2e8..9f0995d8 100644 --- a/sos/plugins/__init__.py +++ b/sos/plugins/__init__.py @@ -1165,7 +1165,7 @@ class SCLPlugin(RedHatPlugin): cmds = [cmds] scl_cmds = [] for cmd in cmds: - scl_cmds.append(convert_cmd_scl(scl, cmd)) + scl_cmds.append(self.convert_cmd_scl(scl, cmd)) self.add_cmd_output(scl_cmds, **kwargs) # config files for Software Collections are under /etc/${prefix}/${scl} and |