Skip to content

Commit

Permalink
fix: log config file warning as string not tuple (#7918)
Browse files Browse the repository at this point in the history
  • Loading branch information
branchvincent authored May 13, 2023
1 parent ebf6b48 commit e5bbc60
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/poetry/locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,10 @@
if any(file.exists() for file in (auth_toml, config_toml)):
logger.warning(
(
(
"Configuration file exists at %s, reusing this"
" directory.\n\nConsider moving TOML configuration files to %s, as"
" support for the legacy directory will be removed in an upcoming"
" release."
),
"Configuration file exists at %s, reusing this"
" directory.\n\nConsider moving TOML configuration files to %s, as"
" support for the legacy directory will be removed in an upcoming"
" release."
),
_LEGACY_CONFIG_DIR,
CONFIG_DIR,
Expand Down

0 comments on commit e5bbc60

Please sign in to comment.