Index: policycoreutils-3.7/selinux-python-3.7/sepolicy/sepolicy/__init__.py =================================================================== --- policycoreutils-3.7.orig/selinux-python-3.7/sepolicy/sepolicy/__init__.py +++ policycoreutils-3.7/selinux-python-3.7/sepolicy/sepolicy/__init__.py @@ -1245,7 +1245,8 @@ def get_os_version(): import distro system_release = distro.name(pretty=True) except (ModuleNotFoundError, OSError, IOError, UnicodeError, subprocess.CalledProcessError): - system_release = "Misc" + # make SUSE the default return value on SUSE systems + system_release = "SUSE" return system_release