diff --git a/stegano/lsb/lsb.py b/stegano/lsb/lsb.py index 0acdead..38ceccb 100755 --- a/stegano/lsb/lsb.py +++ b/stegano/lsb/lsb.py @@ -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. diff --git a/stegano/lsbset/lsbset.py b/stegano/lsbset/lsbset.py index ce9fab6..e9c55b8 100644 --- a/stegano/lsbset/lsbset.py +++ b/stegano/lsbset/lsbset.py @@ -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.