Merge pull request #272 from PR0M3TH3AN/codex/update-label-for-show-qr-option

Clarify seed phrase QR prompt
This commit is contained in:
thePR0M3TH3AN
2025-07-05 09:26:55 -04:00
committed by GitHub

View File

@@ -1099,7 +1099,7 @@ class PasswordManager:
print(colored(f"Notes: {notes}", "cyan"))
print(colored("Seed Phrase:", "cyan"))
print(colored(phrase, "yellow"))
if confirm_action("Show QR? (Y/N): "):
if confirm_action("Show Compact Seed QR? (Y/N): "):
from password_manager.seedqr import encode_seedqr
TotpManager.print_qr_code(encode_seedqr(phrase))
@@ -1328,7 +1328,7 @@ class PasswordManager:
)
else:
print(colored(phrase, "yellow"))
if confirm_action("Show QR? (Y/N): "):
if confirm_action("Show Compact Seed QR? (Y/N): "):
from password_manager.seedqr import encode_seedqr
TotpManager.print_qr_code(encode_seedqr(phrase))