Clean comments.

This commit is contained in:
Cédric Bonhomme 2017-02-22 07:18:46 +01:00
parent 316d50b96f
commit 07fa54e7d0
No known key found for this signature in database
GPG key ID: A1CB94DE57B7A70D
2 changed files with 0 additions and 4 deletions

View file

@ -130,7 +130,6 @@ def write(image, output_image_file):
try:
image.save(output_image_file)
except Exception as e:
# If hide() returns an error (Too long message).
print(e)
finally:
image.close()

View file

@ -122,10 +122,7 @@ def reveal(input_image_file, generator):
return ""
def write(image, output_image_file):
"""
"""
try:
image.save(output_image_file)
except Exception as e:
# If hide() returns an error (Too long message).
print(e)