Fixed qt run template so that the current environment is sent to the new python process.

This commit is contained in:
Virgil Dupras 2010-10-05 00:36:20 -07:00
parent b217309618
commit 562123b219
1 changed files with 3 additions and 3 deletions

View File

@ -8,8 +8,8 @@ import subprocess
def main():
scriptpath = op.abspath(__file__)
scriptfolder = op.dirname(scriptpath)
newenv = {'PYTHONPATH': scriptfolder}
subprocess.Popen([sys.executable, '-m', 'qt.{{edition}}.start'], env=newenv)
os.environ['PYTHONPATH'] = scriptfolder
subprocess.Popen([sys.executable, '-m', 'qt.{{edition}}.start'], env=os.environ)
if __name__ == '__main__':
sys.exit(main())
sys.exit(main())