about summary refs log tree commit diff stats
path: root/example/symbol_exec/depgraph.py
diff options
context:
space:
mode:
authorIvan “CLOVIS” Canet <ivan.canet@gmail.com>2022-03-15 15:00:24 +0100
committerIvan “CLOVIS” Canet <ivan.canet@gmail.com>2022-03-21 09:21:51 +0100
commit64f55d0c4f8f770e5b1d41ce59228ab2cba07f9a (patch)
treec59ea040f3307fb53a87ea4b1cebede75bd0095b /example/symbol_exec/depgraph.py
parente71c3152d1e57a95b5243e7d4c814eed4bad870a (diff)
downloadmiasm-64f55d0c4f8f770e5b1d41ce59228ab2cba07f9a.tar.gz
miasm-64f55d0c4f8f770e5b1d41ce59228ab2cba07f9a.zip
Fixed usage for constant_propagation, depgraph & graph_dataflow
Diffstat (limited to 'example/symbol_exec/depgraph.py')
-rw-r--r--example/symbol_exec/depgraph.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/symbol_exec/depgraph.py b/example/symbol_exec/depgraph.py
index 21c6fe45..a7df2e25 100644
--- a/example/symbol_exec/depgraph.py
+++ b/example/symbol_exec/depgraph.py
@@ -12,7 +12,7 @@ from miasm.analysis.depgraph import DependencyGraph
 from miasm.expression.expression import ExprMem, ExprId, ExprInt
 from miasm.core.locationdb import LocationDB
 
-parser = ArgumentParser("Dependency grapher")
+parser = ArgumentParser(description="Dependency grapher")
 parser.add_argument("filename", help="Binary to analyse")
 parser.add_argument("func_addr", help="Function address")
 parser.add_argument("target_addr", help="Address to start")