pylint: fix issues

This commit is contained in:
Roman Zeyde
2015-06-16 10:33:48 +03:00
parent 768ee33bf2
commit 7ef71df81b
6 changed files with 12 additions and 12 deletions

View File

@@ -50,7 +50,7 @@ def sign_message(buf, keys, signer):
raise ValueError('key not found')
log.debug('signing %d-byte blob', len(blob))
r, s = signer(label=k['name'], blob=blob)
r, s = signer(label=key['name'], blob=blob)
signature = (r, s)
log.debug('signature: %s', signature)