SEToolsWidget: change ui path to use sys.prefix.

This commit is contained in:
Chris PeBenito 2015-06-07 10:02:53 -04:00
parent 911e44d5d8
commit ce70c48c28

View File

@ -16,6 +16,7 @@
# License along with SETools. If not, see
# <http://www.gnu.org/licenses/>.
#
import sys
from PyQt5.uic import loadUi
@ -24,7 +25,7 @@ class SEToolsWidget(object):
def load_ui(self, filename):
# If we are in the git repo, look at the local
# UI file, otherwise look at the installed file.
for path in ["data/", "/usr/share/setools/"]:
for path in ["data/", sys.prefix + "/share/setools/"]:
try:
loadUi(path + filename, self)
break