From d14a3d20375e98318fcadf4dc947c50c17b7c253 Mon Sep 17 00:00:00 2001 From: Aaron Gundel Date: Thu, 24 Oct 2024 16:38:31 -0600 Subject: [PATCH] fix host patterns --- arches_lingo/hosts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arches_lingo/hosts.py b/arches_lingo/hosts.py index 8d11487c..cbc5e354 100644 --- a/arches_lingo/hosts.py +++ b/arches_lingo/hosts.py @@ -2,7 +2,7 @@ from django_hosts import patterns, host host_patterns = patterns( - host(re.sub(r"_", r"-", r"arches_lingo"), "arches_lingo.urls", name="arches_lingo"), - host(r"arches", "arches.urls", name="arches"), "", + host(r"arches", "arches.urls", name="arches"), + host(re.sub(r"_", r"-", r"arches_lingo"), "arches_lingo.urls", name="arches_lingo"), )