Skip to content

Commit 3959849

Browse files
committed
Fix mirror script on Python 3.10
1 parent 6fc4225 commit 3959849

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/mirror-commits-from-intel-llvm.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ def main():
7575
print("There are no patches to apply, exiting.")
7676
exit(0)
7777

78-
print(f"Applying the following patches:\n{'\n'.join(patches)}")
78+
patches_lines = "\n".join(patches)
79+
print(f"Applying the following patches:\n{patches_lines}")
7980

8081
run(["git", "-C", args.unified_runtime_dir, "am"] + patches)
8182

0 commit comments

Comments
 (0)