summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Krick <frank.krick@gmail.com>2018-10-28 21:25:13 -0400
committerFrank Krick <frank.krick@gmail.com>2018-10-28 21:25:13 -0400
commitda3ccd21a98af37da685038c229b0afd2b17e198 (patch)
tree356fa83429ad84e0b47f32453066d81162d1d1d3
parenta3a2774a1cd9bc1622df9f81b825f8aa2fe080c5 (diff)
downloadwaitress-da3ccd21a98af37da685038c229b0afd2b17e198.tar.gz
Fixed comment
-rw-r--r--waitress/adjustments.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/waitress/adjustments.py b/waitress/adjustments.py
index 84e4d4a..8474236 100644
--- a/waitress/adjustments.py
+++ b/waitress/adjustments.py
@@ -71,7 +71,7 @@ def str_iftruthy(s):
def as_socket_list(sockets):
"""Checks if the elements in the list are of type socket and
- returns None if not."""
+ removes them if not."""
return [sock for sock in sockets if isinstance(sock, socket.socket)]
class _str_marker(str):