diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index bca590d4c..4d0324e5e 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -3309,6 +3309,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)