From 06c2d5061e25df8fd006f962b572cccdd90b97ad Mon Sep 17 00:00:00 2001 From: Ultimate Hackers Date: Tue, 7 Nov 2017 16:53:47 +0530 Subject: [PATCH] Fixed a syntax error --- blazy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blazy.py b/blazy.py index 5d187d9..ae99cb2 100644 --- a/blazy.py +++ b/blazy.py @@ -42,7 +42,7 @@ elif 'https://' in url: else: url = 'http://' + url try: - br.open(url, timeout=10.0)) #Opens the url + br.open(url, timeout=10.0) #Opens the url except URLError as e: url = 'https://' + url br.open(url)