From 2a2c834886a6b4770caa3ed453217ee5ee5a5209 Mon Sep 17 00:00:00 2001 From: dece Date: Mon, 24 Jan 2022 18:06:57 +0100 Subject: [PATCH] lists: do not create user dir, done by smolcgi --- lists | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lists b/lists index 1f026eb..d076668 100755 --- a/lists +++ b/lists @@ -8,10 +8,6 @@ from pathlib import Path import smolcgi as scgi scgi.require_client_cert() -STORAGE_PATH = Path("/home/gemini/storage/lists") -if not STORAGE_PATH.exists(): - STORAGE_PATH.mkdir(parents=True) - ALLOWED_LIST_NAME_CHARS = string.ascii_lowercase + string.digits + "_"