Fixed missing argument

This commit is contained in:
ManeraKai
2024-09-03 09:37:12 +03:00
parent b654b28394
commit a37d902b7b
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -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
View File
@@ -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
View File
@@ -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())