fix(cli): use correct dict key for codex auth file path in status output

This commit is contained in:
PercyDikec 2026-03-05 21:27:12 +03:00
parent 21d61bdd71
commit ad57bf1e4b
No known key found for this signature in database
GPG key ID: 8838A85B2422556A

View file

@ -128,7 +128,7 @@ def show_status(args):
f" {'OpenAI Codex':<12} {check_mark(codex_logged_in)} "
f"{'logged in' if codex_logged_in else 'not logged in (run: hermes model)'}"
)
codex_auth_file = codex_status.get("auth_file")
codex_auth_file = codex_status.get("auth_store")
if codex_auth_file:
print(f" Auth file: {codex_auth_file}")
codex_last_refresh = _format_iso_timestamp(codex_status.get("last_refresh"))