Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into revert_cleaned_up…
Browse files Browse the repository at this point in the history
…_arrow_implementation
  • Loading branch information
jeanimal committed Mar 2, 2019
2 parents cd29ff6 + a47ef53 commit 50da0b6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions manimlib/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@
f"Media will be stored in {MEDIA_DIR + os.sep}. You can change "
"this behavior by writing a different directory to media_dir.txt."
)
with open("media_dir.txt", 'w') as media_file:
media_file.write(MEDIA_DIR)

VIDEO_DIR = os.path.join(MEDIA_DIR, "videos")
RASTER_IMAGE_DIR = os.path.join(MEDIA_DIR, "designs", "raster_images")
Expand Down
2 changes: 1 addition & 1 deletion manimlib/scene/scene_file_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def finish(self):

def open_movie_pipe(self):
file_path = self.get_next_partial_movie_path()
temp_file_path = file_path.replace(".", "_temp.")
temp_file_path = os.path.splitext(file_path)[0] + '_temp' + self.movie_file_extension

self.partial_movie_file_path = file_path
self.temp_partial_movie_file_path = temp_file_path
Expand Down

0 comments on commit 50da0b6

Please sign in to comment.