diff options
author | 2019-04-20 14:39:16 +0100 | |
---|---|---|
committer | 2019-04-20 14:39:16 +0100 | |
commit | 43039cd13afd19ea59addc3bb92c3c600826d8a3 (patch) | |
tree | 1aaaf8b862a7b55836c6a64a16d2fc4cb4100e60 /pydis_site/hosts.py | |
parent | Address reviews (diff) | |
parent | Merge pull request #213 from python-discord/django_front_page (diff) |
Merge branch 'django' into django+200/wiki
# Conflicts:
# Pipfile
# Pipfile.lock
# pydis_site/apps/home/tests/test_app_basics.py
# pydis_site/apps/home/urls.py
# pydis_site/hosts.py
# pydis_site/settings.py
Diffstat (limited to 'pydis_site/hosts.py')
-rw-r--r-- | pydis_site/hosts.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pydis_site/hosts.py b/pydis_site/hosts.py index 25220ee0..0fa4793d 100644 --- a/pydis_site/hosts.py +++ b/pydis_site/hosts.py @@ -3,7 +3,6 @@ from django_hosts import host, patterns host_patterns = patterns( '', - # host(r"subdomain pattern", "URLs module", "host entry name"), host(r'admin', 'pydis_site.apps.admin.urls', name="admin"), host(r'api', 'pydis_site.apps.api.urls', name='api'), host(r'.*', 'pydis_site.apps.home.urls', name=settings.DEFAULT_HOST) |