From 703ab67d0a1c927d2253622e6c62d56bf4bf39e0 Mon Sep 17 00:00:00 2001 From: mahbd <53579616+mahbd@users.noreply.github.com> Date: Wed, 27 Oct 2021 06:55:57 +0600 Subject: [PATCH] Solve spelling mistake. There was a spelling mistake on line 113. "socker" should be "socket". --- docs/installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation.rst b/docs/installation.rst index 723c8f595..ed3dfd0cb 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -110,7 +110,7 @@ option. This option allows you to specify a custom function for this purpose. if DEBUG: import os # only if you haven't already imported this import socket # only if you haven't already imported this - hostname, _, ips = socker.gethostbyname_ex(socket.gethostname()) + hostname, _, ips = socket.gethostbyname_ex(socket.gethostname()) INTERNAL_IPS = [ip[:-1] + '1' for ip in ips] + ['127.0.0.1', '10.0.2.2']