diff options
| -rw-r--r-- | django/http/request.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/http/request.py b/django/http/request.py index 175cdd58b5..c87a4c5125 100644 --- a/django/http/request.py +++ b/django/http/request.py @@ -89,9 +89,9 @@ class HttpRequest(object): else: msg = "Invalid HTTP_HOST header: %r." % host if domain: - msg += "You may need to add %r to ALLOWED_HOSTS." % domain + msg += " You may need to add %r to ALLOWED_HOSTS." % domain else: - msg += "The domain name provided is not valid according to RFC 1034/1035" + msg += " The domain name provided is not valid according to RFC 1034/1035." raise DisallowedHost(msg) def get_full_path(self): |
