diff --git a/compiler/api/compiler.py b/compiler/api/compiler.py index adc6cfff..a6514994 100644 --- a/compiler/api/compiler.py +++ b/compiler/api/compiler.py @@ -132,7 +132,7 @@ def sort_args(args): args.remove(i) for i in args[:]: - if re.match(r"flags\d?", i[0]): + if re.match(r"flags\d?", i[0]) and i[1] == "#": args.remove(i) return args + flags