Skip to content

Commit eae8e9b

Browse files
authored
Merge pull request #89 from bkorecic/master
Fix missing spaces and capitalize some words in usage message
2 parents ec9b426 + ba9e8d8 commit eae8e9b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

manim/config.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def parse_cli():
1616
parser = argparse.ArgumentParser()
1717
parser.add_argument(
1818
"file",
19-
help="path to file holding the python code for the scene",
19+
help="Path to file holding the python code for the scene",
2020
)
2121
parser.add_argument(
2222
"scene_names",
@@ -96,14 +96,14 @@ def parse_cli():
9696
parser.add_argument(
9797
"-o", "--file_name",
9898
help="Specify the name of the output file, if"
99-
"it should be different from the scene class name",
99+
" it should be different from the scene class name",
100100
)
101101
parser.add_argument(
102102
"-n", "--start_at_animation_number",
103103
help="Start rendering not from the first animation, but"
104-
"from another, specified by its index. If you pass"
105-
"in two comma separated values, e.g. \"3,6\", it will end"
106-
"the rendering at the second value",
104+
" from another, specified by its index. If you pass"
105+
" in two comma separated values, e.g. \"3,6\", it will end"
106+
" the rendering at the second value",
107107
)
108108
parser.add_argument(
109109
"-r", "--resolution",
@@ -125,20 +125,20 @@ def parse_cli():
125125
)
126126
parser.add_argument(
127127
"--media_dir",
128-
help="directory to write media",
128+
help="Directory to write media",
129129
)
130130
video_group = parser.add_mutually_exclusive_group()
131131
video_group.add_argument(
132132
"--video_dir",
133-
help="directory to write file tree for video",
133+
help="Directory to write file tree for video",
134134
)
135135
parser.add_argument(
136136
"--tex_dir",
137-
help="directory to write tex",
137+
help="Directory to write tex",
138138
)
139139
parser.add_argument(
140140
"--text_dir",
141-
help="directory to write text",
141+
help="Directory to write text",
142142
)
143143
return parser.parse_args()
144144
except argparse.ArgumentError as err:

0 commit comments

Comments
 (0)