python/sepolicy/sepolicy/gui: Fix getting python lib path
Python code is not platform specific and resides always in lib (as opposed to lib64 on x64 architectures). Signed-off-by: Vit Mojzis <vmojzis@redhat.com>
This commit is contained in:
parent
7e09f584e1
commit
041e00106f
|
@ -130,7 +130,7 @@ class SELinuxGui():
|
|||
self.application = app
|
||||
self.filter_txt = ""
|
||||
builder = Gtk.Builder() # BUILDER OBJ
|
||||
self.code_path = distutils.sysconfig.get_python_lib(plat_specific=True) + "/sepolicy/"
|
||||
self.code_path = distutils.sysconfig.get_python_lib(plat_specific=False) + "/sepolicy/"
|
||||
glade_file = self.code_path + "sepolicy.glade"
|
||||
builder.add_from_file(glade_file)
|
||||
self.outer_notebook = builder.get_object("outer_notebook")
|
||||
|
|
Loading…
Reference in New Issue