diff options
author | Pavel Moravec <pmoravec@redhat.com> | 2021-07-02 09:52:11 +0200 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2021-07-12 10:56:46 -0400 |
commit | de7edce3f92ed50abcb28dd0dbcbeb104dc7c679 (patch) | |
tree | 3274e342dc6ead0fbab7f211d68cd5de2b3d061a | |
parent | 9ff3ce48f668781916b1926362812d6eab43b15c (diff) | |
download | sos-de7edce3f92ed50abcb28dd0dbcbeb104dc7c679.tar.gz |
[collector] fix a typo in --plugin-option
Sos report uses --plugin-option or --plugopts.
Relevant: #2606
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
-rw-r--r-- | sos/collector/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/collector/__init__.py b/sos/collector/__init__.py index 6d96d692..f072287e 100644 --- a/sos/collector/__init__.py +++ b/sos/collector/__init__.py @@ -272,7 +272,7 @@ class SoSCollector(SoSComponent): help="chroot executed commands to SYSROOT") sos_grp.add_argument('-e', '--enable-plugins', action="extend", help='Enable specific plugins for sosreport') - sos_grp.add_argument('-k', '--plugin-options', action="extend", + sos_grp.add_argument('-k', '--plugin-option', action="extend", help='Plugin option as plugname.option=value') sos_grp.add_argument('--log-size', default=0, type=int, help='Limit the size of individual logs (in MiB)') |