We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2979f2a commit 446a2abCopy full SHA for 446a2ab
Lib/ensurepip/__init__.py
@@ -26,7 +26,7 @@ def _find_wheel_pkg_dir_pip():
26
if _WHEEL_PKG_DIR is None:
27
return None
28
29
- dist_matching_wheels = _WHEEL_PKG_DIR.glob(f'pip-*.whl')
+ dist_matching_wheels = _WHEEL_PKG_DIR.glob('pip-*.whl')
30
try:
31
last_matching_dist_wheel = sorted(dist_matching_wheels)[-1]
32
except IndexError as index_err:
0 commit comments