fix: show_private_key

This commit is contained in:
thomasv 2013-09-10 16:07:59 +02:00
parent 620f9f68d4
commit 323aafa34d
1 changed files with 2 additions and 2 deletions

View 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