Skip to content

Commit 4fbcf89

Browse files
committed
style: use consistent 'Using' prefix for local config log message
1 parent 8e50bcd commit 4fbcf89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gptme/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ def get_project_config(workspace: Path | None) -> ProjectConfig | None:
453453
local_config_path = project_config_path.parent / "gptme.local.toml"
454454
if local_config_path.exists():
455455
console.log(
456-
f"Loading local configuration from {path_with_tilde(local_config_path)}"
456+
f"Using local configuration from {path_with_tilde(local_config_path)}"
457457
)
458458
with open(local_config_path) as f:
459459
local_config_data = tomlkit.load(f).unwrap()

0 commit comments

Comments
 (0)