From 316d50b96f57e8785bef12a3202aed68886ace7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bonhomme?= Date: Wed, 22 Feb 2017 07:16:46 +0100 Subject: [PATCH] Stop support of Python 2. --- stegano/lsb/lsb.py | 5 ----- stegano/lsbset/lsbset.py | 5 ----- 2 files changed, 10 deletions(-) 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.