diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2022-04-23 18:25:01 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-23 18:25:01 -0600 |
commit | 732ed25e4a1e3802d82a976f9541f74548b13e6f (patch) | |
tree | e31300febd0fa2d6b0be8f6c9c9ccf1d2efe0245 | |
parent | 4633dcf0725e050b014637704191f7dbb5017766 (diff) | |
parent | f8a62be72b0cd8a77eb8fe3e5f7f01284d4c37c8 (diff) | |
download | numpy-732ed25e4a1e3802d82a976f9541f74548b13e6f.tar.gz |
Merge pull request #21384 from code-review-doctor/fix-probably-meant-fstring
Missing `f` prefix on f-strings fix
-rw-r--r-- | numpy/distutils/mingw32ccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/mingw32ccompiler.py b/numpy/distutils/mingw32ccompiler.py index fbe3655c9..d48e27966 100644 --- a/numpy/distutils/mingw32ccompiler.py +++ b/numpy/distutils/mingw32ccompiler.py @@ -215,7 +215,7 @@ def find_python_dll(): elif implementation == 'PyPy': dllname = f'libpypy{major_version}-c.dll' else: - dllname = 'Unknown platform {implementation}' + dllname = f'Unknown platform {implementation}' print("Looking for %s" % dllname) for folder in lib_dirs: dll = os.path.join(folder, dllname) |