diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2017-08-31 14:38:00 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2017-11-01 14:18:00 +0000 |
commit | 1a0ebe1f82b347f9eefa47e44c9573ada94d846b (patch) | |
tree | 6674e4593580d0d0cccb50ee4715947ffb3745d8 | |
parent | 32230fb444b7c1f70eaab151979e6d693704717f (diff) | |
download | sos-1a0ebe1f82b347f9eefa47e44c9573ada94d846b.tar.gz |
[foreman] fix missing ',' in packages list
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/foreman.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/foreman.py b/sos/plugins/foreman.py index 6079d72e..06d43536 100644 --- a/sos/plugins/foreman.py +++ b/sos/plugins/foreman.py @@ -23,7 +23,7 @@ class Foreman(Plugin, RedHatPlugin): plugin_name = 'foreman' profiles = ('sysmgmt',) - packages = ('foreman-debug') + packages = ('foreman-debug',) def setup(self): cmd = "foreman-debug" |