summaryrefslogtreecommitdiffstats
path: root/Lib/socketserver.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/socketserver.py')
-rw-r--r--Lib/socketserver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/socketserver.py b/Lib/socketserver.py
index f1b0e4a..fc4ee4e 100644
--- a/Lib/socketserver.py
+++ b/Lib/socketserver.py
@@ -288,7 +288,7 @@ class BaseServer:
deadline = time() + timeout
# Wait until a request arrives or the timeout expires - the loop is
- # necessary to accomodate early wakeups due to EINTR.
+ # necessary to accommodate early wakeups due to EINTR.
with _ServerSelector() as selector:
selector.register(self, selectors.EVENT_READ)