From 0863e64a32cae55a5daa4ee37f84f285b1b40c7b Mon Sep 17 00:00:00 2001 From: tacticthreat Date: Fri, 3 May 2019 15:49:31 -0400 Subject: [PATCH] urllib.request is deprecated The urllib.request modules have been deprecated .. just use import urllib --- Clickjacking_Tester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Clickjacking_Tester.py b/Clickjacking_Tester.py index 69f1604..ff68b16 100644 --- a/Clickjacking_Tester.py +++ b/Clickjacking_Tester.py @@ -1,6 +1,6 @@ # Contributor(s): nigella (@nig) -from urllib.request import urlopen +from urllib import urlopen from sys import argv, exit __author__ = 'D4Vinci'