fix: show_private_key
authorthomasv <thomasv@gitorious>
Tue, 10 Sep 2013 14:07:59 +0000 (16:07 +0200)
committerthomasv <thomasv@gitorious>
Tue, 10 Sep 2013 14:07:59 +0000 (16:07 +0200)
gui/gui_classic.py

index 1bebc90..15318e8 100644 (file)
@@ -1601,11 +1601,11 @@ class ElectrumWindow(QMainWindow):
     def show_private_key(self, address, password):
         if not address: return
         try:
-            pk = self.wallet.get_private_key(address, password)
+            pk_list = self.wallet.get_private_key(address, password)
         except BaseException, e:
             self.show_message(str(e))
             return
-        QMessageBox.information(self, _('Private key'), 'Address'+ ': ' + address + '\n\n' + _('Private key') + ': ' + pk, _('OK'))
+        QMessageBox.information(self, _('Private key'), 'Address'+ ': ' + address + '\n\n' + _('Private key') + ': ' + '\n'.join(pk_list), _('OK'))
 
 
     @protected