Stop support of Python 2.

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

View file

@ -30,11 +30,6 @@ from PIL import Image
from stegano import tools
try:
input = raw_input
except NameError:
pass
def hide(input_image_file, message, auto_convert_rgb=False):
"""Hide a message (string) in an image with the
LSB (Least Significant Bit) technique.

View file

@ -32,11 +32,6 @@ from PIL import Image
from stegano import tools
from . import generators
try:
input = raw_input
except NameError:
pass
def hide(input_image_file, message, generator, auto_convert_rgb=False):
"""Hide a message (string) in an image with the
LSB (Least Significant Bit) technique.