mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2025-12-27 03:06:45 +01:00
Pre-v5 Calibre fix for nsapa_proxy.
This commit is contained in:
parent
7077c85ada
commit
c65ce60f71
1 changed files with 5 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue