diff --git a/electrum/plugins/revealer/qt.py b/electrum/plugins/revealer/qt.py
index 5044f6b6d..6feb44412 100644
--- a/electrum/plugins/revealer/qt.py
+++ b/electrum/plugins/revealer/qt.py
@@ -254,24 +254,37 @@ class Plugin(RevealerPlugin):
self.rawnoise = False
version = self.versioned_seed.version
code_id = self.versioned_seed.checksum
- dialog.show_message(''.join([_("{} encrypted for Revealer {}_{} saved as PNG and PDF at: ").format(self.was, version, code_id),
- "", self.get_path_to_revealer_file(), "", "
",
- "
", "", _("Always check your backups.")]),
- rich_text=True)
+ dialog.show_message(''.join([
+ _("{} encrypted for Revealer {}_{} saved as PNG and PDF at: ").format(self.was, version, code_id),
+ "",
+ self.get_path_to_revealer_file(),
+ "",
+ "
",
+ "
",
+ "",
+ _("Always check your backups.")
+ ]), rich_text=True)
dialog.close()
def ext_warning(self, dialog):
- dialog.show_message(''.join(["",_("Warning"), ": ",
- _("your seed extension will not be included in the encrypted backup.")]),
- rich_text=True)
+ dialog.show_message(''.join([
+ "",
+ _("Warning"),
+ ": ",
+ _("your seed extension will not be included in the encrypted backup.")
+ ]), rich_text=True)
dialog.close()
def bdone(self, dialog):
version = self.versioned_seed.version
code_id = self.versioned_seed.checksum
- dialog.show_message(''.join([_("Digital Revealer ({}_{}) saved as PNG and PDF at:").format(version, code_id),
- "
","", self.get_path_to_revealer_file(), '']),
- rich_text=True)
+ dialog.show_message(''.join([
+ _("Digital Revealer ({}_{}) saved as PNG and PDF at:").format(version, code_id),
+ "
",
+ "",
+ self.get_path_to_revealer_file(),
+ ''
+ ]), rich_text=True)
def customtxt_limits(self):