diff options
Diffstat (limited to 'mesonbuild/modules/python.py')
-rw-r--r-- | mesonbuild/modules/python.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/python.py b/mesonbuild/modules/python.py index 1be9acf..31be450 100644 --- a/mesonbuild/modules/python.py +++ b/mesonbuild/modules/python.py @@ -195,7 +195,7 @@ class PythonSystemDependency(SystemDependency, _PythonDependencyBase): if comp.id == "gcc": if imp_lower == 'pypy' and verdot == '3.8': # The naming changed between 3.8 and 3.9 - libpath = Path(f'libpypy3-c.dll') + libpath = Path('libpypy3-c.dll') elif imp_lower == 'pypy': libpath = Path(f'libpypy{verdot}-c.dll') else: |