diff options
author | Abhijeet Kasurde <akasurde@redhat.com> | 2016-01-15 09:51:51 +0530 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2016-02-05 18:44:10 +0000 |
commit | 3d174adbf7778098a8e3db067a322e225ea0f7fe (patch) | |
tree | 985b5c34356fdae46d6c0f6d362171629d766548 | |
parent | 51fa0e3a53b6da46cf66dee20850b0eac31cf05f (diff) | |
download | sos-3d174adbf7778098a8e3db067a322e225ea0f7fe.tar.gz |
[sosreport] Added help message for list-profiles
Fixes: #726.
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
-rw-r--r-- | sos/sosreport.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sos/sosreport.py b/sos/sosreport.py index f2f30ae8..03bd9984 100644 --- a/sos/sosreport.py +++ b/sos/sosreport.py @@ -636,7 +636,9 @@ class SoSOptions(object): dest="profiles", type="string", default=deque(), help="enable plugins selected by the given profiles") parser.add_option("--list-profiles", action="store_true", - dest="list_profiles", default=False) + dest="list_profiles", default=False, + help="display a list of available profiles and " + "plugins that they include") parser.add_option("--name", action="store", dest="customer_name", help="specify report name") |