From 748ca4e0f146f81f64d2ea260b97e059b35a24c9 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Fri, 18 Jan 2019 14:15:07 -0800 Subject: [PATCH] Fixed compile from file list issue --- manimlib/scene/scene.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/manimlib/scene/scene.py b/manimlib/scene/scene.py index 4ebbc0fa..41e7ee57 100644 --- a/manimlib/scene/scene.py +++ b/manimlib/scene/scene.py @@ -788,8 +788,7 @@ class Scene(Container): for pf_path in partial_movie_files: if os.name == 'nt': pf_path = pf_path.replace('\\', '/') - - fp.write("file {}\n".format(pf_path)) + fp.write("file \'{}\'\n".format(pf_path)) movie_file_path = self.get_movie_file_path() commands = [ @@ -807,8 +806,7 @@ class Scene(Container): combine_process = subprocess.Popen(commands) combine_process.wait() - os.remove(file_list) - print("File ready at {}".format(movie_file_path)) + # os.remove(file_list) if self.includes_sound: sound_file_path = movie_file_path.replace(