1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-03-26 08:31:38 +00:00

Replaced the use of runpy for running Qt by a simple subprocess call. runpy would cause weird QTimer warnings.

This commit is contained in:
Virgil Dupras
2010-10-05 09:27:32 +02:00
parent 357a02c74b
commit b217309618
3 changed files with 6 additions and 7 deletions

View File

@@ -3,14 +3,13 @@
import sys
import os
import os.path as op
import runpy
import subprocess
def main():
scriptpath = op.abspath(__file__)
scriptfolder = op.dirname(scriptpath)
sys.path.insert(0, scriptfolder)
del sys.argv[0]
runpy.run_module('qt.{edition}.start', run_name="__main__")
newenv = {'PYTHONPATH': scriptfolder}
subprocess.Popen([sys.executable, '-m', 'qt.{{edition}}.start'], env=newenv)
if __name__ == '__main__':
sys.exit(main())