Fix bad reference to args (#146)

This commit is contained in:
Mark Mossberg
2017-04-18 18:56:58 -04:00
committed by GitHub
parent a9711cf119
commit 65df1cbe35
+1 -1
View File
@@ -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))