Fix run_simple.py (#102)

`Manticore(None, path)` throws an error
This commit is contained in:
JP Smith
2017-03-23 09:52:39 -05:00
committed by GitHub
parent f016b7635a
commit 053cc5ff8d
+1 -1
View File
@@ -9,7 +9,7 @@ from manticore import Manticore
if __name__ == '__main__':
path = sys.argv[1]
# Create a new Manticore object
m = Manticore(None, path)
m = Manticore(path)
# Start path exploration. start() returns when Manticore
# finishes
m.run()