Skip to content

Commit

Permalink
fix host patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongundel committed Oct 24, 2024
1 parent 8578297 commit d14a3d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arches_lingo/hosts.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
)

0 comments on commit d14a3d2

Please sign in to comment.