Skip to content

Commit

Permalink
Quick bugfix to support new downloader
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshi16 authored Jun 7, 2024
1 parent 918c080 commit 6de6e1a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions chatdownloader/src/twitchdownloaderproxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ def __init__(self, executable_path=""):
self.chat_tempfile_name = tempfile.mktemp(".json")
self.chat_tempfile = open(self.chat_tempfile_name, "ab+")
self.chat_tempfile.close()
os.remove(self.chat_tempfile_name)

def __enter__(self):
return self
Expand Down

0 comments on commit 6de6e1a

Please sign in to comment.