From a320f92023cbb2108fe3a03f40afb1f89c193484 Mon Sep 17 00:00:00 2001 From: thomasv Date: Sun, 15 Sep 2013 17:56:09 +0200 Subject: [PATCH] fix syntax error --- gui/gui_classic/main_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/gui_classic/main_window.py b/gui/gui_classic/main_window.py index 3942a8b10..36085ba3d 100644 --- a/gui/gui_classic/main_window.py +++ b/gui/gui_classic/main_window.py @@ -1560,9 +1560,9 @@ class ElectrumWindow(QMainWindow): layout.setRowStretch(3,1) def do_verify(): - message = unicode(verify_message.toPlainText() + message = unicode(verify_message.toPlainText()) message = message.encode('utf-8') - if self.wallet.verify_message(verify_address.text(), str(verify_signature.toPlainText()), message)): + if self.wallet.verify_message(verify_address.text(), str(verify_signature.toPlainText()), message): self.show_message(_("Signature verified")) else: self.show_message(_("Error: wrong signature"))