Update check_url_redirect.py (#60991)

This commit is contained in:
CoreCode
2019-03-28 02:04:13 +00:00
committed by Vítor Galvão
parent 3025a43a41
commit ec60985e17
+6 -1
View File
@@ -5,9 +5,14 @@ import urllib2
url = sys.argv[1]
headers = {'User-Agent' : 'Mozilla'}
if len(sys.argv) > 2:
ua = sys.argv[2]
headers = { 'User-Agent' : ua }
try:
response = urllib2.urlopen(url)
req = urllib2.Request(url, None, headers)
response = urllib2.urlopen(req)
redir = response.geturl()
except Exception:
import traceback