Skip to content

Commit

Permalink
record: Fix variable name for one of subprocesses
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDrHax committed Apr 3, 2021
1 parent 84bcab2 commit 76a0b93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twitch_utils/record.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def record(vod_id: str, stream: Stream, vod: Stream, parts: int = 0) -> int:
segment.start = max(0, missing_part[0] - 60)
segment.end = missing_part[1] + 60

segment = segment.download_async(generate_filename(vod_id, parts))
vod_proc = segment.download_async(generate_filename(vod_id, parts))
parts += 1

vod_proc.join()
Expand Down

0 comments on commit 76a0b93

Please sign in to comment.