about summary refs log tree commit diff stats
path: root/example/jitter/trace.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2021-05-06 23:23:06 +0200
committerGitHub <noreply@github.com>2021-05-06 23:23:06 +0200
commit6285271a95f3ec9815728fb808a69bb21b50f770 (patch)
tree486f3b67c279b452085943864dea336c760106aa /example/jitter/trace.py
parentacfb6e552b287cc91d2060456be4ea7071b9ba8e (diff)
parente0abd462cefd168ae82426533c1a822254aca374 (diff)
downloadmiasm-6285271a95f3ec9815728fb808a69bb21b50f770.tar.gz
miasm-6285271a95f3ec9815728fb808a69bb21b50f770.zip
Merge pull request #1368 from Summus-git/replace_run_bool
Replace jitter.run boolean by jitter.running
Diffstat (limited to 'example/jitter/trace.py')
-rw-r--r--example/jitter/trace.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/jitter/trace.py b/example/jitter/trace.py
index 968626f4..92134f33 100644
--- a/example/jitter/trace.py
+++ b/example/jitter/trace.py
@@ -58,5 +58,5 @@ start_time = time.time()
 sb.run()
 stop_time = time.time()
 
-assert sb.jitter.run is False
+assert sb.jitter.running is False
 print("Instr speed: %02.f / sec" % (instr_count / (stop_time - start_time)))