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 85eea44 commit af43e13Copy full SHA for af43e13
src/pip/_internal/commands/debug.py
@@ -136,7 +136,7 @@ def show_tags(options: Values) -> None:
136
def ca_bundle_info(config: Configuration) -> str:
137
# Ruff misidentifies config as a dict.
138
# Configuration does not have support the mapping interface.
139
- levels = {key.split(".")[0] for key, _ in config.items()} # noqa: PERF102
+ levels = {key.split(".", 1)[0] for key, _ in config.items()} # noqa: PERF102
140
if not levels:
141
return "Not specified"
142
0 commit comments