diff options
author | 2019-04-20 14:41:40 +0200 | |
---|---|---|
committer | 2019-04-20 14:41:40 +0200 | |
commit | 14f8ca26b85f7cc3e009fb9ba2ac549e751c8068 (patch) | |
tree | 041b093b2c9296fe23eb6e1bb54d0748fbe58dfa /pydis_site/hosts.py | |
parent | Revert linter to non-verbose. (diff) | |
parent | Make the flakes happy. (diff) |
Merge pull request #213 from python-discord/django_front_page
Django front page
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 34acfd09..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) |