Skip to content

Commit 1557585

Browse files
committed
Use percent formatting
1 parent 2954964 commit 1557585

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -509,11 +509,11 @@ def build_extensions(self) -> None:
509509

510510
if root is None and pkg_config:
511511
if isinstance(lib_name, str):
512-
_dbg(f"Looking for `{lib_name}` using pkg-config.")
512+
_dbg("Looking for `%s` using pkg-config.", lib_name)
513513
root = pkg_config(lib_name)
514514
else:
515515
for lib_name2 in lib_name:
516-
_dbg(f"Looking for `{lib_name2}` using pkg-config.")
516+
_dbg("Looking for `%s` using pkg-config.", lib_name2)
517517
root = pkg_config(lib_name2)
518518
if root:
519519
break

0 commit comments

Comments
 (0)