From 3ad4262fcf73e86cbab321ab3942ec455e927c3c Mon Sep 17 00:00:00 2001 From: "Peter D. Gray" Date: Thu, 21 Dec 2023 16:02:46 +0100 Subject: [PATCH] nits (cherry picked from commit 55d549085267cf5c46496251a8aab190f6397128) --- releases/ChangeLog.md | 2 +- shared/actions.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/releases/ChangeLog.md b/releases/ChangeLog.md index 6e5afa61..077f8e88 100644 --- a/releases/ChangeLog.md +++ b/releases/ChangeLog.md @@ -1,6 +1,6 @@ ## 5.2.2 - 2023-12-21 -- Bugfix: Re-enable `Lock Down Seed` which was disabled by accident +- Bugfix: Re-enable `Lock Down Seed` feature which was disabled by accident ## 5.2.1 - 2023-12-19 diff --git a/shared/actions.py b/shared/actions.py index 428c9dfd..ad28edc1 100644 --- a/shared/actions.py +++ b/shared/actions.py @@ -566,7 +566,7 @@ async def convert_ephemeral_to_master(*a): return words = settings.get("words", True) - _type = 'BIP-39 passphrase ' if bip39_passphrase else 'temporary seed ' + _type = 'BIP-39 passphrase' if bip39_passphrase else 'temporary seed' msg = 'Convert currently used %s to master seed. Old master seed' % _type if words or bip39_passphrase: msg += ' words themselves are erased forever, ' @@ -585,7 +585,7 @@ async def convert_ephemeral_to_master(*a): msg += 'The resulting wallet cannot be used with any other passphrase. ' msg += 'A reboot is part of this process. ' - msg += ('PIN code, and %s funds are not affected.' % _type) + msg += 'PIN code, and %s funds are not affected.' % _type if not await ux_confirm(msg): return await ux_aborted()