diff options
| author | Romain Lesteven <romain.lesteven@gatewatcher.com> | 2021-05-05 11:02:33 +0200 |
|---|---|---|
| committer | Romain Lesteven <romain.lesteven@gatewatcher.com> | 2021-05-05 11:02:33 +0200 |
| commit | e0abd462cefd168ae82426533c1a822254aca374 (patch) | |
| tree | 486f3b67c279b452085943864dea336c760106aa /miasm/analysis/sandbox.py | |
| parent | acfb6e552b287cc91d2060456be4ea7071b9ba8e (diff) | |
| download | focaccia-miasm-e0abd462cefd168ae82426533c1a822254aca374.tar.gz focaccia-miasm-e0abd462cefd168ae82426533c1a822254aca374.zip | |
Replace jitter.run boolean by jitter.running
Diffstat (limited to 'miasm/analysis/sandbox.py')
| -rw-r--r-- | miasm/analysis/sandbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm/analysis/sandbox.py b/miasm/analysis/sandbox.py index 542e31f9..e51fd45a 100644 --- a/miasm/analysis/sandbox.py +++ b/miasm/analysis/sandbox.py @@ -25,7 +25,7 @@ class Sandbox(object): @staticmethod def code_sentinelle(jitter): - jitter.run = False + jitter.running = False return False @classmethod |