ci: fix comment in settings_local.py

This commit is contained in:
Jennifer Richards 2024-11-26 09:23:30 -04:00
parent 4b57602404
commit 5bb79bb7ca
No known key found for this signature in database
GPG key ID: 9B2BF5C5ADDA6A6E

View file

@ -82,7 +82,7 @@ else:
# Set DEBUG if DATATRACKER_DEBUG env var is the word "true"
DEBUG = os.environ.get("DATATRACKER_DEBUG", "false").lower() == "true"
# DATATRACKER_ALLOWED_HOSTS env var is a comma-separated list of allowed hosts
# DATATRACKER_ALLOWED_HOSTS env var is a newline-separated list of allowed hosts
_allowed_hosts_str = os.environ.get("DATATRACKER_ALLOWED_HOSTS", None)
if _allowed_hosts_str is not None:
ALLOWED_HOSTS = _multiline_to_list(_allowed_hosts_str)