mirror of
https://github.com/SELinuxProject/setools
synced 2025-04-04 15:29:44 +00:00
SEToolsWidget: change ui path to use sys.prefix.
This commit is contained in:
parent
911e44d5d8
commit
ce70c48c28
@ -16,6 +16,7 @@
|
|||||||
# License along with SETools. If not, see
|
# License along with SETools. If not, see
|
||||||
# <http://www.gnu.org/licenses/>.
|
# <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
|
import sys
|
||||||
|
|
||||||
from PyQt5.uic import loadUi
|
from PyQt5.uic import loadUi
|
||||||
|
|
||||||
@ -24,7 +25,7 @@ class SEToolsWidget(object):
|
|||||||
def load_ui(self, filename):
|
def load_ui(self, filename):
|
||||||
# If we are in the git repo, look at the local
|
# If we are in the git repo, look at the local
|
||||||
# UI file, otherwise look at the installed file.
|
# UI file, otherwise look at the installed file.
|
||||||
for path in ["data/", "/usr/share/setools/"]:
|
for path in ["data/", sys.prefix + "/share/setools/"]:
|
||||||
try:
|
try:
|
||||||
loadUi(path + filename, self)
|
loadUi(path + filename, self)
|
||||||
break
|
break
|
||||||
|
Loading…
Reference in New Issue
Block a user