diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2018-07-02 13:13:15 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-07-02 13:13:15 +0100 |
commit | 0a76861b9690889b59a95161af473e62c962c787 (patch) | |
tree | 9a7703b0a503d16f4f45e463d3035e7de6995784 | |
parent | a7ccf68366cc5481570f821e8cfd4bd84b7e7c8d (diff) | |
download | sos-0a76861b9690889b59a95161af473e62c962c787.tar.gz |
[sosreport] accept -q as alias for --quiet
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/sosreport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/sosreport.py b/sos/sosreport.py index a98ca337..60802617 100644 --- a/sos/sosreport.py +++ b/sos/sosreport.py @@ -282,7 +282,7 @@ def _parse_args(args): parser.add_argument("-p", "--profile", action="extend", dest="profiles", type=str, default=[], help="enable plugins used by the given profiles") - parser.add_argument("--quiet", action="store_true", + parser.add_argument("-q", "--quiet", action="store_true", dest="quiet", default=False, help="only print fatal errors") parser.add_argument("-s", "--sysroot", action="store", dest="sysroot", |