diff options
author | Jake Hunsaker <jhunsake@redhat.com> | 2020-03-26 17:08:54 -0400 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2020-04-08 09:27:16 -0400 |
commit | 29d21bc577e8afabe89d94c1d16b4096fcb8c0ca (patch) | |
tree | ae76e6118f1cac5c656dbc0bfe5ee709a266c766 | |
parent | 59789c823dcbbd0452421ad3c68d568e54f32c3a (diff) | |
download | sos-29d21bc577e8afabe89d94c1d16b4096fcb8c0ca.tar.gz |
[redhat] Fix SoSOptions import
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
-rw-r--r-- | sos/policies/redhat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/policies/redhat.py b/sos/policies/redhat.py index 9aa594c8..4d3da57d 100644 --- a/sos/policies/redhat.py +++ b/sos/policies/redhat.py @@ -17,7 +17,7 @@ import re from sos.report.plugins import RedHatPlugin from sos.policies import LinuxPolicy, PackageManager, PresetDefaults from sos import _sos as _ -from sos import SoSOptions +from sos.options import SoSOptions OS_RELEASE = "/etc/os-release" |