diff --git a/stegano/lsb/lsb.py b/stegano/lsb/lsb.py index 38ceccb..b9a07b4 100755 --- a/stegano/lsb/lsb.py +++ b/stegano/lsb/lsb.py @@ -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() diff --git a/stegano/lsbset/lsbset.py b/stegano/lsbset/lsbset.py index e9c55b8..eac6ad9 100644 --- a/stegano/lsbset/lsbset.py +++ b/stegano/lsbset/lsbset.py @@ -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)