X-Git-Url: http://git.onelab.eu/?p=sface.git;a=blobdiff_plain;f=sface-run;h=48650dccf503a0b699e927b4a72eb96c910cc9be;hp=eecabd23e4644ed260ef957368a90e71f01cc03c;hb=fbf57aa79afbf14a2dcf050d6be641cd59c0306d;hpb=aa95005ce00ac174226e7f5b1de895527bcb2730 diff --git a/sface-run b/sface-run index eecabd2..48650dc 100755 --- a/sface-run +++ b/sface-run @@ -3,9 +3,8 @@ import os import sys from optparse import OptionParser -from PyQt4.QtGui import * -sys.path.append(".") +sys.path.insert(0, ".") exe = os.path.abspath(sys.argv[0]) def using_env(e): @@ -40,13 +39,14 @@ if sys.platform == "darwin": os.environ["PATH"] = PATH os.environ["DYLD_LIBRARY_PATH"] = DYLD_LIBRARY_PATH os.environ["DYLD_FRAMEWORK_PATH"] = DYLD_FRAMEWORK_PATH - if os.path.exists(RESOURCES): sys.path.append(RESOURCES) - if os.path.exists(FRAMEWORKS): sys.path.append(FRAMEWORKS) + if os.path.exists(RESOURCES): sys.path.insert(0, RESOURCES) + if os.path.exists(FRAMEWORKS): sys.path.insert(0, FRAMEWORKS) elif sys.platform == "linux2": sys.path.extend(["/usr/share", "/usr/share/sface"]) +from PyQt4.QtGui import * from sface.mainwindow import MainWindow from sface.config import config