From c9436bbaefe59bf6939cdc1c037430e890b4b39e Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 4 Aug 2014 18:15:15 +0200 Subject: [PATCH] Fix noconv in scripts.run_profile --- scripts/run_profile.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/run_profile.py b/scripts/run_profile.py index 3ae8140d7..4b89fd7e6 100755 --- a/scripts/run_profile.py +++ b/scripts/run_profile.py @@ -43,6 +43,8 @@ else: if '--profile-noconv' in sys.argv: sys.argv.remove('--profile-noconv') noconv = True +else: + noconv = False callgraphfile = os.path.join(tempdir, 'callgraph') profiler = cProfile.Profile()