mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
Change string format style
This commit is contained in:
parent
4fdd655564
commit
81f6063736
1 changed files with 1 additions and 1 deletions
|
@ -274,7 +274,7 @@ class SceneFileWriter(object):
|
||||||
for pf_path in partial_movie_files:
|
for pf_path in partial_movie_files:
|
||||||
if os.name == 'nt':
|
if os.name == 'nt':
|
||||||
pf_path = pf_path.replace('\\', '/')
|
pf_path = pf_path.replace('\\', '/')
|
||||||
fp.write("file \'{}\'\n".format(pf_path))
|
fp.write(f"file \'{pf_path}\'\n")
|
||||||
|
|
||||||
movie_file_path = self.get_movie_file_path()
|
movie_file_path = self.get_movie_file_path()
|
||||||
commands = [
|
commands = [
|
||||||
|
|
Loading…
Add table
Reference in a new issue