mirror of
https://github.com/3b1b/manim.git
synced 2026-04-26 03:00:23 -04: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