fix indent according pep8

This commit is contained in:
Zou Yong 2017-03-02 18:24:59 +08:00
parent 39b25e59b2
commit e73d4892a4

View file

@ -139,7 +139,8 @@ class Cryptor(object):
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