about summary refs log tree commit diff stats
path: root/example/asm/shellcode.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2015-12-16 16:29:13 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2015-12-16 16:29:13 +0100
commit797b00e9449368448518ffa5497935569049c3ba (patch)
tree9b6540b736f6163197fe8dd4ff066a27a638aff4 /example/asm/shellcode.py
parent8ebdbffdc6c86e9b832869046dfc6e11a8fb21be (diff)
downloadfocaccia-miasm-797b00e9449368448518ffa5497935569049c3ba.tar.gz
focaccia-miasm-797b00e9449368448518ffa5497935569049c3ba.zip
Autopep8
Diffstat (limited to 'example/asm/shellcode.py')
-rw-r--r--example/asm/shellcode.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/asm/shellcode.py b/example/asm/shellcode.py
index ce84238a..9dc5c6bc 100644
--- a/example/asm/shellcode.py
+++ b/example/asm/shellcode.py
@@ -10,8 +10,8 @@ from miasm2.analysis.machine import Machine
 from miasm2.core.interval import interval
 
 parser = ArgumentParser("Multi-arch (32 bits) assembler")
-parser.add_argument('architecture', help="architecture: " + \
-                        ",".join(Machine.available_machine()))
+parser.add_argument('architecture', help="architecture: " +
+                    ",".join(Machine.available_machine()))
 parser.add_argument("source", help="Source file to assemble")
 parser.add_argument("output", help="Output file")
 parser.add_argument("--PE", help="Create a PE with a few imports",