about summary refs log tree commit diff stats
path: root/example/asm/shellcode.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2022-03-24 10:51:47 +0100
committerGitHub <noreply@github.com>2022-03-24 10:51:47 +0100
commit0601bbed4cb32098f216b4a2af0310e996e69a56 (patch)
treea4a31dc3e809e9c87845d2a7be285cc386292bbd /example/asm/shellcode.py
parentb9ecc43cf5ae1583cb9a1e053bac5be2e6c68aa0 (diff)
parentf15b490908227dbd2be7aa58abcd2c0c9872b612 (diff)
downloadfocaccia-miasm-0601bbed4cb32098f216b4a2af0310e996e69a56.tar.gz
focaccia-miasm-0601bbed4cb32098f216b4a2af0310e996e69a56.zip
Merge pull request #1418 from CLOVIS-AI/shellcode
Incorrect usage in shellcode.py --help
Diffstat (limited to 'example/asm/shellcode.py')
-rwxr-xr-xexample/asm/shellcode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/asm/shellcode.py b/example/asm/shellcode.py
index 70d844a9..a04c1776 100755
--- a/example/asm/shellcode.py
+++ b/example/asm/shellcode.py
@@ -13,7 +13,7 @@ from miasm.core.interval import interval
 from miasm.core.locationdb import LocationDB
 from miasm.core.utils import iterbytes, int_to_byte
 
-parser = ArgumentParser("Multi-arch (32 bits) assembler")
+parser = ArgumentParser(description="Multi-arch (32 bits) assembler")
 parser.add_argument('architecture', help="architecture: " +
                     ",".join(Machine.available_machine()))
 parser.add_argument("source", help="Source file to assemble")