Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions EditingDictaBooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2831,7 +2831,7 @@ def run(self):

# קבלת רשימת קבצים מ-GitHub
try:
response = requests.get(BASE_URL + "DictaToOtzaria/ספרים/לא ערוך/list.txt")
response = requests.get(BASE_URL + "DictaToOtzaria/ספרים/לא ערוך/list.txt", verify = False)
if response.status_code != 200:
self.finished_signal.emit(False, f"שגיאה בקבלת רשימת קבצים מגיטהאב: {response.status_code}")
return
Expand Down Expand Up @@ -2860,7 +2860,7 @@ def run(self):

# הורדת הקובץ
try:
response = requests.get(BASE_URL + f"DictaToOtzaria/ספרים/לא ערוך/אוצריא/{file}")
response = requests.get(BASE_URL + f"DictaToOtzaria/ספרים/לא ערוך/אוצריא/{file}", verify = False)
if response.status_code != 200:
self.update_progress.emit(f"שגיאה בהורדת הקובץ: {file}")
continue
Expand Down Expand Up @@ -2934,7 +2934,7 @@ def run(self):

# קבלת רשימת קבצים מ-GitHub
try:
response = requests.get(BASE_URL + "DictaToOtzaria/ספרים/לא ערוך/list.txt")
response = requests.get(BASE_URL + "DictaToOtzaria/ספרים/לא ערוך/list.txt", verify = False)
if response.status_code != 200:
self.update_progress.emit(f"שגיאה בקבלת רשימת קבצים מגיטהאב: {response.status_code}")
return
Expand Down Expand Up @@ -4409,3 +4409,4 @@ def main():

if __name__ == "__main__":
main()