(minor) missing space in message when deleting wallet

This commit is contained in:
SomberNight 2018-05-29 13:40:36 +02:00
parent 9bd082cd82
commit c34273b771
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9
2 changed files with 2 additions and 2 deletions

View file

@ -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)

View file

@ -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):