Skip to content

Commit

Permalink
Fix cookie missing (Xonshiz#338)
Browse files Browse the repository at this point in the history
  • Loading branch information
darodi authored Mar 14, 2023
1 parent 83b6e12 commit 9701e13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comic_dl/comic_dl.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def __init__(self, argv):
conversion = data["conversion"]
keep_files = data["keep"]
image_quality = data["image_quality"]
manual_cookie = data["cookie"]
manual_cookie = data["cookie"] if "cookie" in data else None
pbar_comic = tqdm(data["comics"], dynamic_ncols=True, desc="[Comic-dl] Auto processing", leave=True,
unit='comic')
for elKey in pbar_comic:
Expand Down

0 comments on commit 9701e13

Please sign in to comment.