Skip to content

Commit 86f8fce

Browse files
Fix warning synxtax in Tools/jit/_targets.py
Co-authored-by: Savannah Ostrowski <[email protected]>
1 parent cae1308 commit 86f8fce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/jit/_targets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ def build(
234234
warning = f"JIT support for {self.triple} is still experimental!"
235235
request = "Please report any issues you encounter.".center(len(warning))
236236
if self.llvm_version != _llvm._LLVM_VERSION:
237-
request = f"Warning! Building with a LLVM version other than {_llvm._LLVM_VERSION} is not supported."
237+
request = f"Warning! Building with an LLVM version other than {_llvm._LLVM_VERSION} is not supported."
238238
outline = "=" * len(warning)
239239
print("\n".join(["", outline, warning, request, outline, ""]))
240240
digest = f"// {self._compute_digest()}\n"

0 commit comments

Comments
 (0)