From 43cc7b836ce4b140b1e9deca57b9f0c3ba9be6b3 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Fri, 25 Jan 2019 01:35:00 +0000 Subject: [PATCH] Fix small typo in llvm2json utility. --- development/llvm2json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/development/llvm2json.py b/development/llvm2json.py index c04b267ab..385812778 100644 --- a/development/llvm2json.py +++ b/development/llvm2json.py @@ -289,7 +289,7 @@ if __name__ == '__main__': print("[*] Converting the YAML to JSON...") sc.set_yaml_data(data) - if not args.output or args.print: + if not args.output or args.display: print("[*] Printing data") print(json.dumps(sc.export_json(), indent = 2, sort_keys = True)) if args.output: