commit | c88fb6148bc8c5e750bf0744c4c189fe53c5847c | [log] [tgz] |
---|---|---|
author | Rico Wind <ricow@google.com> | Tue Oct 30 09:36:33 2018 +0100 |
committer | Rico Wind <ricow@google.com> | Tue Oct 30 09:36:33 2018 +0100 |
tree | 1439a1a4634b3d36eda3376b541681b0bf7d5760 | |
parent | 1bbb12e31d9b87a5168e38108e4b373f5173e7c0 [diff] [blame] |
Fix disasm.py, debug=False is an argument to toolhelper, not to exit Change-Id: I4de424a864766d1be1944f37eb855f0e6bb8c7d4
diff --git a/tools/disasm.py b/tools/disasm.py index a9a5a0a..368a78f 100755 --- a/tools/disasm.py +++ b/tools/disasm.py
@@ -7,4 +7,4 @@ import toolhelper if __name__ == '__main__': - sys.exit(toolhelper.run('disasm', sys.argv[1:]), debug=False) + sys.exit(toolhelper.run('disasm', sys.argv[1:], debug=False))