Fix log file extension

This commit is contained in:
blank X 2021-04-15 10:25:47 +07:00
parent 4a7ad768c7
commit cf794c01c7
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ async def _video_worker():
command.extend(('-c', 'copy', video_filename))
return command
video_filename = os.path.join(tempdir, video_json['id'] + '.mkv')
with open(video_json['id'] + '.mkv', 'ab') as log_file:
with open(video_json['id'] + '.log', 'ab') as log_file:
async def auto_kill(proc):
last_tell = log_file.tell()
while True: