Pre-v5 Calibre fix for nsapa_proxy.

This commit is contained in:
Jim Miller 2021-07-02 10:46:48 -05:00
parent 7077c85ada
commit c65ce60f71

View file

@ -167,7 +167,11 @@ class NSAPA_ProxyFetcher(RequestsFetcher):
finally:
retry_count += 1
#Needed to catch the raise
continue
## continue from finally: not valid in Python2
## (Calibre < v5). Also, continue here seems
## unnecessary--we're at the end of the loop. --JM
# continue
if retry_count == 5:
# We exited the retry loop without any valid content,