tfix message formatting - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 4788a10a8b1ec7a2030ef252c1add49adeff5cac DIR parent e0c38b31b40b42138527e9fd3f4bad78e0b12802 HTML Author: ThomasV <thomasv@electrum.org> Date: Sun, 2 Oct 2016 11:46:47 +0200 fix message formatting Diffstat: M gui/qt/installwizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py t@@ -159,7 +159,7 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard): if not self.question(msg): return file_list = '\n'.join(self.storage.split_accounts()) - msg = _('Your accounts have been moved to:\n %s.\n\nDo you want to delete the old file:\n%s' % (file_list, path)) + msg = _('Your accounts have been moved to') + ':\n' + file_list + '\n\n'+ _('Do you want to delete the old file') + ':\n' + path if self.question(msg): os.remove(path) self.show_warning(_('The file was removed'))