diff options
Diffstat (limited to 'rpki/http.py')
-rw-r--r-- | rpki/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpki/http.py b/rpki/http.py index 7144918c..360388f5 100644 --- a/rpki/http.py +++ b/rpki/http.py @@ -613,7 +613,7 @@ class http_listener(asyncore.dispatcher): res = self.accept() if res is None: raise - sock, addr = res + sock, addr = res # pylint: disable=W0633 self.logger.debug("Accepting connection from %s", addr_to_string(addr)) http_server(sock = sock, handlers = self.handlers) except (rpki.async.ExitNow, SystemExit): |