Fixed a syntax error

This commit is contained in:
Ultimate Hackers
2017-11-07 16:53:47 +05:30
committed by GitHub
parent dd1834de48
commit 06c2d5061e

View File

@@ -42,7 +42,7 @@ elif 'https://' in url:
else: else:
url = 'http://' + url url = 'http://' + url
try: try:
br.open(url, timeout=10.0)) #Opens the url br.open(url, timeout=10.0) #Opens the url
except URLError as e: except URLError as e:
url = 'https://' + url url = 'https://' + url
br.open(url) br.open(url)