Skip to content

Commit a80f2af

Browse files
authored
Missing space in notification string. (#481)
Co-authored-by: Aron Fischer <co-bordism on gitlab>
1 parent 5014972 commit a80f2af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

manim/mobject/svg/tex_mobject.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ def __init__(self, *text_parts, **kwargs):
333333
class TexMobject(MathTex):
334334
def __init__(self, *tex_strings, **kwargs):
335335
logger.warning(
336-
"TexMobject has been deprecated (due to its confusing name)"
336+
"TexMobject has been deprecated (due to its confusing name) "
337337
"in favour of MathTex. Please use MathTex instead!"
338338
)
339339
MathTex.__init__(self, *tex_strings, **kwargs)
@@ -342,7 +342,7 @@ def __init__(self, *tex_strings, **kwargs):
342342
class TextMobject(Tex):
343343
def __init__(self, *text_parts, **kwargs):
344344
logger.warning(
345-
"TextMobject has been deprecated (due to its confusing name)"
345+
"TextMobject has been deprecated (due to its confusing name) "
346346
"in favour of Tex. Please use Tex instead!"
347347
)
348348
Tex.__init__(self, *text_parts, **kwargs)

0 commit comments

Comments
 (0)