[libcxx-commits] [libcxx] b2dd840 - [libc++] Add missing newline and remove unintended escape sequence

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Tue Aug 27 12:06:25 PDT 2024


Author: Louis Dionne
Date: 2024-08-27T15:06:14-04:00
New Revision: b2dd8405d990e525e8bc823e5130eb096bd0cdd0

URL: https://github.com/llvm/llvm-project/commit/b2dd8405d990e525e8bc823e5130eb096bd0cdd0
DIFF: https://github.com/llvm/llvm-project/commit/b2dd8405d990e525e8bc823e5130eb096bd0cdd0.diff

LOG: [libc++] Add missing newline and remove unintended escape sequence

Added: 
    

Modified: 
    libcxx/utils/synchronize_csv_status_files.py

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/synchronize_csv_status_files.py b/libcxx/utils/synchronize_csv_status_files.py
index 5ff718e5a8f916..8e3be14675f97a 100755
--- a/libcxx/utils/synchronize_csv_status_files.py
+++ b/libcxx/utils/synchronize_csv_status_files.py
@@ -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 
diff erent statuses:\nrow: {row}\Github issue: {gh}")
+            print(f"We found a CSV row and a Github issue with 
diff erent statuses:\nrow: {row}\nGithub issue: {gh}")
         results.append(row)
 
     return results


        


More information about the libcxx-commits mailing list