This commit is contained in:
rolux 2012-12-27 15:05:46 +01:00
parent 2cad149414
commit f330a6becb
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ def get_hash(image, mode):
image_hash = hex(image_hash)[2:].upper()
if image_hash.endswith('L'):
image_hash = image_hash[:-1]
image_hash = '0' * (16 - len(h)) + h
image_hash = '0' * (16 - len(image_hash)) + image_hash
return image_hash
def get_sequences(path, position=0):