diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2022-03-24 10:52:48 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-24 10:52:48 +0100 |
| commit | 299fa40894236163a13051fe3b52b3d2e6951e8a (patch) | |
| tree | 6d502cae4c62e48f4e254df60560c543cdc0c938 /example/symbol_exec | |
| parent | 0601bbed4cb32098f216b4a2af0310e996e69a56 (diff) | |
| parent | aa863605984cde8ae14eb14cf62027e6af4b22ad (diff) | |
| download | miasm-299fa40894236163a13051fe3b52b3d2e6951e8a.tar.gz miasm-299fa40894236163a13051fe3b52b3d2e6951e8a.zip | |
Merge pull request #1420 from CLOVIS-AI/examples-update
Updates to the examples
Diffstat (limited to 'example/symbol_exec')
| -rw-r--r-- | example/symbol_exec/depgraph.py | 2 |
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") |