Skip to content

Commit cf14956

Browse files
authored
Fix gh_report.py to propagate --filter/--filter-env properly (#3145)
1 parent cb21d09 commit cf14956

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/gh_report.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,9 @@ def main():
165165
print(flush=True)
166166
cmd = [sys.executable, str(PARSE_SCRIPT)]
167167
if args.filter:
168-
cmd.append(f"--filter {args.filter}")
168+
cmd.extend(["--filter", args.filter])
169169
if args.filter_env:
170-
cmd.append(f"--filter-env {args.filter_env}")
170+
cmd.extend(["--filter-env", args.filter_env])
171171
if args.output:
172172
cmd.append(f"--output")
173173
if args.markdown:

0 commit comments

Comments
 (0)