diff options
| author | Alex Vidal <alex.vidal@gmail.com> | 2015-02-18 15:52:16 -0600 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-02-19 19:31:49 -0500 |
| commit | e467919c6315be87abec72383ec1a81e2665ebec (patch) | |
| tree | 796095fa2afbdfdeab4ae838dab0158024d6e7ec | |
| parent | 1bfcc950ab6e5264bbaf2eba0ce3d3e23d671404 (diff) | |
Fixed typo in django.core.servers.basehttp message.
| -rw-r--r-- | django/core/servers/basehttp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/servers/basehttp.py b/django/core/servers/basehttp.py index e90946fa16..1efa4bb915 100644 --- a/django/core/servers/basehttp.py +++ b/django/core/servers/basehttp.py @@ -126,7 +126,7 @@ class WSGIRequestHandler(simple_server.WSGIRequestHandler, object): elif args[1][0] == '4': # 0x16 = Handshake, 0x03 = SSL 3.0 or TLS 1.x if args[0].startswith(str('\x16\x03')): - msg = ("You're accessing the developement server over HTTPS, " + msg = ("You're accessing the development server over HTTPS, " "but it only supports HTTP.\n") msg = self.style.HTTP_BAD_REQUEST(msg) else: |
