From 4666c07109b1a9b5c987ce0b4df03df8308c419c Mon Sep 17 00:00:00 2001 From: Cara Salter Date: Mon, 1 Apr 2024 15:01:41 +1100 Subject: [PATCH] revert a7fce0a5832056d4e1d73edf1d5f645bdfbe9010 --- acmsite/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acmsite/__init__.py b/acmsite/__init__.py index 276f11f..506050c 100644 --- a/acmsite/__init__.py +++ b/acmsite/__init__.py @@ -46,7 +46,7 @@ def create_app(): # Ensure that uploads directory exists try: - os.mkdir("acmsite/" + app.config["UPLOAD_FOLDER"]) + os.mkdir(app.config["UPLOAD_FOLDER"]) except FileExistsError: pass