diff options
| author | Claude Paroz <claude@2xlibre.net> | 2017-02-11 10:59:57 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2017-02-11 11:16:35 +0100 |
| commit | d4b00c5c24b72f7b0f22f1f9a69c48fc11bf4ab8 (patch) | |
| tree | 941c410fc4051ae316111bdbfb7cd15aff1c0bac | |
| parent | d26413113c1a5c95218fe4e43a684a2fe1ad1bff (diff) | |
Removed WSGIServer.server_bind() identical to parent version
The method customization was removed in 2ca00faa9137.
| -rw-r--r-- | django/core/servers/basehttp.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/django/core/servers/basehttp.py b/django/core/servers/basehttp.py index 5c281b9c24..111b5818cd 100644 --- a/django/core/servers/basehttp.py +++ b/django/core/servers/basehttp.py @@ -65,11 +65,6 @@ class WSGIServer(simple_server.WSGIServer): self.allow_reuse_address = allow_reuse_address super().__init__(*args, **kwargs) - def server_bind(self): - """Override server_bind to store the server name.""" - super().server_bind() - self.setup_environ() - def handle_error(self, request, client_address): if is_broken_pipe_error(): logger.info("- Broken pipe from %s\n", client_address) |
