diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2018-05-26 13:23:57 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-06-20 18:01:21 +0100 |
commit | 7d9d8b3a19254c5cfa6e664add081a8eb0672cd3 (patch) | |
tree | 8963b3aa8aebdde73105d5e061171a8a4babbb08 | |
parent | 793b4f4f8d4dde8a46f943d78f6bcfeca9001573 (diff) | |
download | sos-7d9d8b3a19254c5cfa6e664add081a8eb0672cd3.tar.gz |
[sos] alphabetise SoSOptions attribute list
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/__init__.py | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/sos/__init__.py b/sos/__init__.py index c6ec2486..53040eb5 100644 --- a/sos/__init__.py +++ b/sos/__init__.py @@ -59,32 +59,32 @@ _arg_defaults = { class SoSOptions(object): - list_plugins = False - noplugins = [] - enableplugins = [] - onlyplugins = [] - plugopts = [] - usealloptions = False all_logs = False - log_size = _arg_defaults["log_size"] batch = False build = False - verbosity = 0 - verify = False - quiet = False - debug = False case_id = "" + chroot = _arg_defaults["chroot"] + compression_type = _arg_defaults["compression_type"] + config_file = "" + debug = False + enableplugins = [] + experimental = False label = "" - profiles = deque() + list_plugins = False list_profiles = False - config_file = "" - tmp_dir = "" + log_size = _arg_defaults["log_size"] + noplugins = [] noreport = False + onlyplugins = [] + plugopts = [] + profiles = deque() + quiet = False sysroot = None - chroot = _arg_defaults["chroot"] - compression_type = _arg_defaults["compression_type"] - experimental = False threads = 4 + tmp_dir = "" + usealloptions = False + verbosity = 0 + verify = False def _copy_opt(self, opt, src): if hasattr(src, opt): |