mirror of
https://github.com/arsenetar/dupeguru.git
synced 2025-03-10 05:34:36 +00:00
Fixed qt run template so that the current environment is sent to the new python process.
This commit is contained in:
parent
b217309618
commit
562123b219
@ -8,8 +8,8 @@ import subprocess
|
|||||||
def main():
|
def main():
|
||||||
scriptpath = op.abspath(__file__)
|
scriptpath = op.abspath(__file__)
|
||||||
scriptfolder = op.dirname(scriptpath)
|
scriptfolder = op.dirname(scriptpath)
|
||||||
newenv = {'PYTHONPATH': scriptfolder}
|
os.environ['PYTHONPATH'] = scriptfolder
|
||||||
subprocess.Popen([sys.executable, '-m', 'qt.{{edition}}.start'], env=newenv)
|
subprocess.Popen([sys.executable, '-m', 'qt.{{edition}}.start'], env=os.environ)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
sys.exit(main())
|
sys.exit(main())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user