Message ID | 20230612162155.2604483-4-lautrbach@redhat.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [v2,1/4] python: improve format strings for proper localization | expand |
diff --git a/python/semanage/seobject.py b/python/semanage/seobject.py index 12b20af51f81..f150c9dd4e10 100644 --- a/python/semanage/seobject.py +++ b/python/semanage/seobject.py @@ -504,11 +504,6 @@ class permissiveRecords(semanageRecords): print(t) def add(self, type): - try: - import sepolgen.module as module - except ImportError: - raise ValueError(_("The sepolgen python module is required to setup permissive domains.\nIn some distributions it is included in the policycoreutils-devel package.\n# yum install policycoreutils-devel\nOr similar for your distro.")) - name = "permissive_%s" % type modtxt = "(typepermissive %s)" % type
sepolgen.module is not used for permissive domains Signed-off-by: Petr Lautrbach <lautrbach@redhat.com> --- python/semanage/seobject.py | 5 ----- 1 file changed, 5 deletions(-)