Fixed passphrase request

This commit is contained in:
slush0 2014-02-20 15:58:28 +01:00
parent 8f7c8799a4
commit b6a280c380
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ class TextUIMixin(object):
return proto.PinMatrixAck(pin=pin)
def callback_PassphraseRequest(self, msg):
passphrase = raw_input("Passphrase required: %s " % msg.message)
passphrase = raw_input("Passphrase required: ")
return proto.PassphraseAck(passphrase=passphrase)
def callback_WordRequest(self, msg):