Skip to content

Commit

Permalink
fix(secure_api_key): fix saving key storage method on account organis…
Browse files Browse the repository at this point in the history
…ation edition
  • Loading branch information
clementb49 committed Aug 25, 2024
1 parent 8a377ad commit 62e8804
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion basilisk/gui/account_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def on_ok(self, event):
]
if self.organization:
self.organization.name = self.name.GetValue()
self.organization.key_storage_method = (key_storage_method,)
self.organization.key_storage_method = key_storage_method
self.organization.key = SecretStr(self.key.GetValue())
else:
self.organization = AccountOrganization(
Expand Down

0 comments on commit 62e8804

Please sign in to comment.