From d8070625d8c353196ed032855fc32c34285745ff Mon Sep 17 00:00:00 2001 From: justcool393 Date: Mon, 24 Oct 2022 16:21:11 -0500 Subject: [PATCH] split hosts by comma --- files/helpers/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/helpers/const.py b/files/helpers/const.py index 40b14a231e..563c07e921 100644 --- a/files/helpers/const.py +++ b/files/helpers/const.py @@ -11,7 +11,7 @@ from os import path SITE = environ.get("SITE").strip() SITE_NAME = environ.get("SITE_NAME").strip() -SITE_HOSTS = environ.get("SITE_HOSTS").strip() +SITE_HOSTS = environ.get("SITE_HOSTS").strip().split(',') SECRET_KEY = environ.get("SECRET_KEY").strip() PROXY_URL = environ.get("PROXY_URL").strip() GIPHY_KEY = environ.get('GIPHY_KEY').strip()