Skip to content

Commit a5829fd

Browse files
finswimmerSecrus
authored andcommitted
fix(config): system-git-client could not be set (python-poetry#9795)
1 parent d0c3dd9 commit a5829fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/poetry/console/commands/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def unique_config_values(self) -> dict[str, tuple[Any, Any]]:
6969
"virtualenvs.path": (str, lambda val: str(Path(val))),
7070
"virtualenvs.prefer-active-python": (boolean_validator, boolean_normalizer),
7171
"virtualenvs.prompt": (str, str),
72-
"experimental.system-git-client": (boolean_validator, boolean_normalizer),
72+
"system-git-client": (boolean_validator, boolean_normalizer),
7373
"requests.max-retries": (lambda val: int(val) >= 0, int_normalizer),
7474
"installer.parallel": (boolean_validator, boolean_normalizer),
7575
"installer.max-workers": (lambda val: int(val) > 0, int_normalizer),

0 commit comments

Comments
 (0)