diff options
| author | 2018-10-27 17:08:24 +0100 | |
|---|---|---|
| committer | 2018-10-27 17:08:24 +0100 | |
| commit | 5365572e47625a8a8880921450cd1fb572940221 (patch) | |
| tree | 79ad8003ef8d6a6d430fa4c90d52d1f0c1988bf4 /pysite/hosts.py | |
| parent | trailing comma extermination (diff) | |
| parent | Drop extra whitespace. (diff) | |
Merge branch 'special_snakes' of https://gitlab.com/python-discord/projects/site into special_snakes
Diffstat (limited to 'pysite/hosts.py')
| -rw-r--r-- | pysite/hosts.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/pysite/hosts.py b/pysite/hosts.py index 3cf41e7f..9d4c1ce9 100644 --- a/pysite/hosts.py +++ b/pysite/hosts.py @@ -4,10 +4,10 @@ from django_hosts import host, patterns  host_patterns = patterns(      '',      # > | Subdomain | URL Module   | Host entry name | -    host(r'admin', 'admin.urls',  name="admin"), -    host(r'api',   'api.urls',    name='api'), +    host(r'admin', 'admin.urls', name="admin"), +    host(r'api', 'api.urls', name='api'),      # host(r"staff",    "staff",  name="staff"),      # host(r"wiki",     "wiki",   name="wiki"),      # host(r"ws",       "ws",     name="ws"), -    host(r'.*',       'home.urls',   name=settings.DEFAULT_HOST) +    host(r'.*', 'home.urls', name=settings.DEFAULT_HOST)  ) | 
