We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb21d09 commit cf14956Copy full SHA for cf14956
1 file changed
tools/gh_report.py
@@ -165,9 +165,9 @@ def main():
165
print(flush=True)
166
cmd = [sys.executable, str(PARSE_SCRIPT)]
167
if args.filter:
168
- cmd.append(f"--filter {args.filter}")
+ cmd.extend(["--filter", args.filter])
169
if args.filter_env:
170
- cmd.append(f"--filter-env {args.filter_env}")
+ cmd.extend(["--filter-env", args.filter_env])
171
if args.output:
172
cmd.append(f"--output")
173
if args.markdown:
0 commit comments