Skip to content

Commit

Permalink
Fix code scanning alert no. 2: Clear-text logging of sensitive inform…
Browse files Browse the repository at this point in the history
…ation

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
  • Loading branch information
1 parent 7e73fad commit e615544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bitcoin_safe/gui/qt/dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,6 @@ def filename(self) -> str:
dialog = PasswordCreation()
password = dialog.get_password()
if password:
print(f"Password created: {password}")
print("Password created successfully.")
sys.exit(app.exec())
quit()

0 comments on commit e615544

Please sign in to comment.