decrypt_keyvalue in cmdtr.py takes value in hex from command line

This commit is contained in:
Ondrej Mikle 2014-08-16 23:02:54 +02:00
parent a2a5b6a460
commit 30dcccf12f
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ class Commands(object):
def decrypt_keyvalue(self, args):
address_n = self.client.expand_path(args.n)
ret = self.client.decrypt_keyvalue(address_n, args.key, args.value)
ret = self.client.decrypt_keyvalue(address_n, args.key, args.value.decode("hex"))
return ret
def firmware_update(self, args):