1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Correct default from disabled to auto. See #11939.

This commit is contained in:
Dos Moonen 2023-04-10 11:06:34 +02:00
parent ebcc368a51
commit 9605b97b48
2 changed files with 1 additions and 1 deletions

View file

@ -257,7 +257,7 @@ keyring_provider: Callable[..., Option] = partial(
"--keyring-provider",
dest="keyring_provider",
choices=["auto", "disabled", "import", "subprocess"],
default="disabled",
default="auto",
help=(
"Enable the credential lookup via the keyring library if user input is allowed."
" Specify which mechanism to use [disabled, import, subprocess]."