[Mlir-commits] [clang] [compiler-rt] [libcxx] [lld] [lldb] [llvm] [mlir] [polly] python: use raw strings for regex (PR #105990)
Louis Dionne
llvmlistbot at llvm.org
Tue Aug 27 12:05:34 PDT 2024
================
@@ -284,7 +284,7 @@ def sync_csv(rows: List[Tuple], from_github: List[PaperInfo]) -> List[Tuple]:
results.append(gh.for_printing())
continue
elif paper.status != gh.status:
- print(f"We found a CSV row and a Github issue with different statuses:\nrow: {row}\Github issue: {gh}")
+ print(rf"We found a CSV row and a Github issue with different statuses:\nrow: {row}\Github issue: {gh}")
----------------
ldionne wrote:
Ah, yeah that's the issue. The `\G` is unintended. I'll fix this right now.
https://github.com/llvm/llvm-project/pull/105990
More information about the Mlir-commits
mailing list