diff options
| author | code-review-doctor <contact+django-doctor-test@richardtier.co.uk> | 2022-04-23 23:52:26 +0100 |
|---|---|---|
| committer | code-review-doctor <contact+django-doctor-test@richardtier.co.uk> | 2022-04-23 23:52:26 +0100 |
| commit | f8a62be72b0cd8a77eb8fe3e5f7f01284d4c37c8 (patch) | |
| tree | e31300febd0fa2d6b0be8f6c9c9ccf1d2efe0245 | |
| parent | 4633dcf0725e050b014637704191f7dbb5017766 (diff) | |
| download | numpy-f8a62be72b0cd8a77eb8fe3e5f7f01284d4c37c8.tar.gz | |
Fix issue probably-meant-fstring found at https://codereview.doctor
| -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) |
