From 62277551b2d3cb4adcc4acdccae0da59b1747634 Mon Sep 17 00:00:00 2001 From: evilhero Date: Thu, 12 Apr 2018 10:25:42 -0400 Subject: [PATCH] FIX:(#1918) Incorrect requests import within try/except always default to exception values --- post-processing/autoProcessComics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post-processing/autoProcessComics.py b/post-processing/autoProcessComics.py index cc5a268b..4017fdd6 100644 --- a/post-processing/autoProcessComics.py +++ b/post-processing/autoProcessComics.py @@ -4,7 +4,7 @@ import ConfigParser import urllib2 import urllib try: - import requests2 + import requests use_requests = True except ImportError: print "Requests module not found on system. I'll revert so this will work, but you probably should install "