From 1f30831ab9faf00ca3f78b96314a0ac453b0172b Mon Sep 17 00:00:00 2001 From: jakeogh Date: Sat, 29 Dec 2018 01:17:24 -0700 Subject: [PATCH] add locked_file.flush() --- youtube_dl/utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index ec6343da8..12de61412 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -1613,6 +1613,9 @@ class locked_file(object): def read(self, *args): return self.f.read(*args) + def flush(self, *args): + self.f.flush() + def close(self, *args): self.__exit__(self, *args, value=False, traceback=False)