fix indent according pep8
This commit is contained in:
parent
39b25e59b2
commit
e73d4892a4
1 changed files with 4 additions and 3 deletions
|
@ -137,9 +137,10 @@ class Cryptor(object):
|
||||||
decipher_iv = buf[:decipher_iv_len]
|
decipher_iv = buf[:decipher_iv_len]
|
||||||
self.decipher_iv = decipher_iv
|
self.decipher_iv = decipher_iv
|
||||||
self.decipher = self.get_cipher(
|
self.decipher = self.get_cipher(
|
||||||
self.password, self.method,
|
self.password, self.method,
|
||||||
CIPHER_ENC_DECRYPTION,
|
CIPHER_ENC_DECRYPTION,
|
||||||
iv=decipher_iv)
|
iv=decipher_iv
|
||||||
|
)
|
||||||
buf = buf[decipher_iv_len:]
|
buf = buf[decipher_iv_len:]
|
||||||
if len(buf) == 0:
|
if len(buf) == 0:
|
||||||
return buf
|
return buf
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue