mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-10 17:59:02 +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():
|
||||
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())
|
Loading…
Reference in New Issue
Block a user