Fix comment typos.

This commit is contained in:
Darko Poljak 2016-10-30 14:49:07 +01:00
parent 579b8d5c72
commit ca67533ce4
1 changed files with 2 additions and 2 deletions

View File

@ -98,13 +98,13 @@ class TriggerHttp(BaseHTTPRequestHandler):
class HTTPServerV4(http.server.HTTPServer):
"""
Server that listens to IPv4 and IPv6 requests
Server that listens only to IPv4 requests.
"""
address_family = socket.AF_INET
class HTTPServerV6(http.server.HTTPServer):
"""
Server that listens both to IPv4 and IPv6 requests
Server that listens both to IPv4 and IPv6 requests.
"""
address_family = socket.AF_INET6