summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcode-review-doctor <contact+django-doctor-test@richardtier.co.uk>2022-04-23 23:52:26 +0100
committercode-review-doctor <contact+django-doctor-test@richardtier.co.uk>2022-04-23 23:52:26 +0100
commitf8a62be72b0cd8a77eb8fe3e5f7f01284d4c37c8 (patch)
treee31300febd0fa2d6b0be8f6c9c9ccf1d2efe0245
parent4633dcf0725e050b014637704191f7dbb5017766 (diff)
downloadnumpy-f8a62be72b0cd8a77eb8fe3e5f7f01284d4c37c8.tar.gz
Fix issue probably-meant-fstring found at https://codereview.doctor
-rw-r--r--numpy/distutils/mingw32ccompiler.py2
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)