diff options
Diffstat (limited to 'lab/parser.py')
-rw-r--r-- | lab/parser.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lab/parser.py b/lab/parser.py index 50b43564..43f3da52 100644 --- a/lab/parser.py +++ b/lab/parser.py @@ -28,19 +28,19 @@ class ParserMain: parser.add_option( "-d", action="store_true", dest="dis", help="Disassemble" - ) + ) parser.add_option( "-R", action="store_true", dest="recursive", help="Recurse to find source files" - ) + ) parser.add_option( "-s", action="store_true", dest="source", help="Show analyzed source" - ) + ) parser.add_option( "-t", action="store_true", dest="tokens", help="Show tokens" - ) + ) options, args = parser.parse_args() if options.recursive: |