Skip to content

Commit

Permalink
fix(Forgot to Change Old Arg to Var): 🐛
Browse files Browse the repository at this point in the history
  • Loading branch information
thezak48 committed Nov 19, 2023
1 parent e266a90 commit a1284eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manga_dl.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,9 @@ def main():
"Schedule Mode: Script will run every %s minutes.", schedule
)
download_manga()
_, next_run = calc_next_run(int(args.schedule), write_out=True)
_, next_run = calc_next_run(int(schedule), write_out=True)
log.info(next_run["next_run_str"])
time.sleep(int(args.schedule) * 60)
time.sleep(int(schedule) * 60)
except KeyboardInterrupt:
Progress().exit()
sys.exit(0)
Expand Down

0 comments on commit a1284eb

Please sign in to comment.