We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b860f9 commit fce4118Copy full SHA for fce4118
scripts/license.py
@@ -93,7 +93,7 @@ def fix_llvm_license(var: Dict[str, str]):
93
94
print(part1 + part2 + part3)
95
for i in range(1, len(llvm_license) - 1):
96
- print(cmt + " " + llvm_license[i])
+ print((cmt + " " + llvm_license[i]).rstrip())
97
part1 = cmt + "==="
98
part3 = "===" + cmt
99
part2 = "-" * (WIDTH - len(part1) - len(part3))
@@ -161,4 +161,4 @@ def use_llvm_license(path: str) -> bool:
161
else:
162
print("Success : %s" % filepath)
163
164
-sys.exit(0 if success else 1)
+sys.exit(0 if success else 1)
0 commit comments