From a3cf6e7d2cf26eec1f55c9f967f1d7498451fca7 Mon Sep 17 00:00:00 2001 From: JP Smith Date: Thu, 27 Jul 2017 12:31:58 -0400 Subject: [PATCH] Fix warning during regular analysis (#420) * only make context warning appear when appropriate * implement felipe's suggestion --- manticore/manticore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manticore/manticore.py b/manticore/manticore.py index a895802..026bc0a 100644 --- a/manticore/manticore.py +++ b/manticore/manticore.py @@ -755,8 +755,8 @@ class Manticore(object): t.cancel() #Copy back the shared conext self._context = dict(self._executor._shared_context) - self.finish_run() self._executor = None + self.finish_run() def terminate(self):