Skip to content

Commit 1d3e36a

Browse files
authored
Bugfix: Fix possible_paths not printing in code_mobject (#978)
1 parent 219d7b8 commit 1d3e36a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manim/mobject/svg/code_mobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def ensure_valid_file(self):
292292
return
293293
error = (
294294
f"From: {os.getcwd()}, could not find {self.file_name} at either "
295-
+ "of these locations: {possible_paths}"
295+
+ f"of these locations: {possible_paths}"
296296
)
297297
raise IOError(error)
298298

0 commit comments

Comments
 (0)