From 65df1cbe35781ed953ce1016d7b26a8aad11cfe2 Mon Sep 17 00:00:00 2001 From: Mark Mossberg Date: Tue, 18 Apr 2017 18:56:58 -0400 Subject: [PATCH] Fix bad reference to args (#146) --- manticore/manticore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manticore/manticore.py b/manticore/manticore.py index e9e1f12..5d07171 100644 --- a/manticore/manticore.py +++ b/manticore/manticore.py @@ -656,7 +656,7 @@ class Manticore(object): f.write(fmt.format(m[1])) if self.memory_errors_file is not None: - with open(args.errorfile, "w") as f: + with open(self._args.errorfile, "w") as f: fmt = "0x{:016x}\n" for m in self._executor.errors: f.write(fmt.format(m))