mirror of
https://github.com/libredirect/instances.git
synced 2024-12-06 19:26:17 +01:00
Fixed missing argument
This commit is contained in:
+1
-1
@@ -160,7 +160,7 @@ def rimgo(mightyList):
|
||||
mightyList['rimgo'] = _list
|
||||
print(Fore.GREEN + 'Fetched ' + Style.RESET_ALL + 'rimgo')
|
||||
except Exception:
|
||||
fetchCache('rimgo')
|
||||
fetchCache('rimgo', mightyList)
|
||||
logging.error(traceback.format_exc())
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -182,7 +182,7 @@ def fetchRegexList(frontend, url, regex, mightyList):
|
||||
mightyList[frontend] = _list
|
||||
print(Fore.GREEN + 'Fetched ' + Style.RESET_ALL + frontend)
|
||||
except Exception:
|
||||
fetchCache(frontend)
|
||||
fetchCache(frontend, mightyList)
|
||||
logging.error(traceback.format_exc())
|
||||
|
||||
|
||||
@@ -217,7 +217,7 @@ def fetchTextList(frontend, url, prepend):
|
||||
mightyList[frontend] = _list
|
||||
print(Fore.GREEN + 'Fetched ' + Style.RESET_ALL + frontend)
|
||||
except Exception:
|
||||
fetchCache(frontend)
|
||||
fetchCache(frontend, mightyList)
|
||||
logging.error(traceback.format_exc())
|
||||
|
||||
|
||||
|
||||
+2
-2
@@ -66,7 +66,7 @@ def piped(mightyList):
|
||||
_list['clearnet'].remove("https://piped.video")
|
||||
print(Fore.GREEN + 'Fetched ' + Style.RESET_ALL + frontend)
|
||||
except Exception:
|
||||
fetchCache(frontend)
|
||||
fetchCache(frontend, mightyList)
|
||||
logging.error(traceback.format_exc())
|
||||
|
||||
|
||||
@@ -107,7 +107,7 @@ def poketube(mightyList):
|
||||
mightyList[frontend] = _list
|
||||
print(Fore.GREEN + 'Fetched ' + Style.RESET_ALL + frontend)
|
||||
except Exception:
|
||||
fetchCache(frontend)
|
||||
fetchCache(frontend, mightyList)
|
||||
logging.error(traceback.format_exc())
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user