From 8c556f7586300b5c0cc9ba4fed09544d6debfe17 Mon Sep 17 00:00:00 2001 From: Devin Neal Date: Thu, 28 Feb 2019 21:18:31 +0000 Subject: [PATCH] don't write media_dir --- manimlib/constants.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/manimlib/constants.py b/manimlib/constants.py index a014a93b..366b37af 100644 --- a/manimlib/constants.py +++ b/manimlib/constants.py @@ -19,8 +19,6 @@ if not os.path.isdir(MEDIA_DIR): 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")