mirror of
https://github.com/3b1b/manim.git
synced 2025-08-02 19:46:21 +08:00
Replace backslash to slash only on windows platform
This commit is contained in:
@ -720,7 +720,7 @@ class Scene(Container):
|
||||
with open(file_list, 'w') as fp:
|
||||
for pf_path in partial_movie_files:
|
||||
if os.name == 'nt':
|
||||
fp_path = fp_path.replace('\\', '/')
|
||||
pf_path = pf_path.replace('\\', '/')
|
||||
|
||||
fp.write("file {}\n".format(pf_path))
|
||||
|
||||
|
Reference in New Issue
Block a user