Skip to content

Commit

Permalink
Increase limit attempt and delay for delete_file function
Browse files Browse the repository at this point in the history
  • Loading branch information
mansuf committed Sep 9, 2024
1 parent 4a8bceb commit bca2570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mangadex_downloader/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def delete_file(file):
return

err = None
for attempt in range(5):
for attempt in range(20):
try:
os.remove(file)
except Exception as e:
Expand Down

0 comments on commit bca2570

Please sign in to comment.