diff options
-rw-r--r-- | sos/plugins/atomichost.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sos/plugins/atomichost.py b/sos/plugins/atomichost.py index 46d12e3f..ce30ac70 100644 --- a/sos/plugins/atomichost.py +++ b/sos/plugins/atomichost.py @@ -22,8 +22,9 @@ class AtomicHost(Plugin, RedHatPlugin): """ Atomic Host """ plugin_name = "atomichost" - option_list = [("info", "gather atomic info for each image", - "fast", False)] + option_list = [ + ("info", "gather atomic info for each image", "fast", False) + ] def check_enabled(self): if not os.path.exists("/host/etc/system-release-cpe"): |