From 4ba09cfb9681e7ac6092bb714483b2c7ece0a512 Mon Sep 17 00:00:00 2001
From: Luc <stagiair@syrinx.nl>
Date: Wed, 8 Dec 2021 11:14:29 +0100
Subject: [PATCH] string typo

---
 tubesync/tubesync/local_settings.py.container | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tubesync/tubesync/local_settings.py.container b/tubesync/tubesync/local_settings.py.container
index a428dc0..92dcfcb 100644
--- a/tubesync/tubesync/local_settings.py.container
+++ b/tubesync/tubesync/local_settings.py.container
@@ -16,7 +16,7 @@ SECRET_KEY = str(os.getenv('DJANGO_SECRET_KEY', 'tubesync-django-secret'))
 
 ALLOWED_HOSTS_STR = os.getenv('TUBESYNC_HOSTS', '')
 CSRF_TRUSTED_ORIGINS = ALLOWED_HOSTS_STR.split(',')
-ALLOWED_HOSTS = [127.0.0.1]
+ALLOWED_HOSTS = ['127.0.0.1']
 
 
 if len(ALLOWED_HOSTS_STR) > 0: