mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
(minor) missing space in message when deleting wallet
This commit is contained in:
parent
9bd082cd82
commit
c34273b771
2 changed files with 2 additions and 2 deletions
|
@ -918,7 +918,7 @@ class ElectrumWindow(App):
|
|||
return
|
||||
self.stop_wallet()
|
||||
os.unlink(wallet_path)
|
||||
self.show_error("Wallet removed:" + basename)
|
||||
self.show_error(_("Wallet removed: {}").format(basename))
|
||||
d = os.listdir(dirname)
|
||||
name = 'default_wallet'
|
||||
new_path = os.path.join(dirname, name)
|
||||
|
|
|
@ -2080,7 +2080,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
|
|||
self.gui_object.daemon.stop_wallet(wallet_path)
|
||||
self.close()
|
||||
os.unlink(wallet_path)
|
||||
self.show_error("Wallet removed:" + basename)
|
||||
self.show_error(_("Wallet removed: {}").format(basename))
|
||||
|
||||
@protected
|
||||
def show_seed_dialog(self, password):
|
||||
|
|
Loading…
Add table
Reference in a new issue