diff options
| author | 2018-10-26 19:46:03 +0200 | |
|---|---|---|
| committer | 2018-10-26 19:46:03 +0200 | |
| commit | 45d5e3a8ad72e771ac6b51003d752b40815c56a0 (patch) | |
| tree | 346d30d9fc7a645bcb2e6b1c826d1014302ed5a5 /pysite/hosts.py | |
| parent | Ignore warning to workaround flake8 bug. (diff) | |
Drop extra whitespace.
Diffstat (limited to '')
| -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)  ) | 
