scripts: Use runcall in run_profile.py.
This commit is contained in:
parent
f19ba277d6
commit
fd5a89dccd
@ -31,7 +31,7 @@ import shutil
|
|||||||
sys.path.insert(0, os.path.join(os.path.dirname(__file__), os.pardir,
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), os.pardir,
|
||||||
os.pardir))
|
os.pardir))
|
||||||
|
|
||||||
import qutebrowser.qutebrowser # pylint: disable=unused-import
|
import qutebrowser.qutebrowser
|
||||||
|
|
||||||
tempdir = tempfile.mkdtemp()
|
tempdir = tempfile.mkdtemp()
|
||||||
|
|
||||||
@ -55,7 +55,7 @@ else:
|
|||||||
|
|
||||||
callgraphfile = os.path.join(tempdir, 'callgraph')
|
callgraphfile = os.path.join(tempdir, 'callgraph')
|
||||||
profiler = cProfile.Profile()
|
profiler = cProfile.Profile()
|
||||||
profiler.run('qutebrowser.qutebrowser.main()')
|
profiler.runcall(qutebrowser.qutebrowser.main)
|
||||||
profiler.dump_stats(profilefile)
|
profiler.dump_stats(profilefile)
|
||||||
|
|
||||||
if not noconv:
|
if not noconv:
|
||||||
|
Loading…
Reference in New Issue
Block a user