Skip to content

Commit e995f25

Browse files
committed
nope
1 parent 36014e6 commit e995f25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pip/_internal/utils/glibc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def glibc_version_string_confstr() -> Optional[str]:
2121
if gnu_libc_version is None:
2222
return None
2323
# os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17":
24-
_, version = gnu_libc_version
24+
_, version = gnu_libc_version.split()
2525
except (OSError, ValueError):
2626
# os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)...
2727
return None

0 commit comments

Comments
 (0)