We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2954964 commit 1557585Copy full SHA for 1557585
setup.py
@@ -509,11 +509,11 @@ def build_extensions(self) -> None:
509
510
if root is None and pkg_config:
511
if isinstance(lib_name, str):
512
- _dbg(f"Looking for `{lib_name}` using pkg-config.")
+ _dbg("Looking for `%s` using pkg-config.", lib_name)
513
root = pkg_config(lib_name)
514
else:
515
for lib_name2 in lib_name:
516
- _dbg(f"Looking for `{lib_name2}` using pkg-config.")
+ _dbg("Looking for `%s` using pkg-config.", lib_name2)
517
root = pkg_config(lib_name2)
518
if root:
519
break
0 commit comments