diff options
Diffstat (limited to 'libpathod')
-rw-r--r-- | libpathod/pathoc.py | 8 | ||||
-rw-r--r-- | libpathod/pathod.py | 1 |
2 files changed, 6 insertions, 3 deletions
diff --git a/libpathod/pathoc.py b/libpathod/pathoc.py index a32e13b5..af43defc 100644 --- a/libpathod/pathoc.py +++ b/libpathod/pathoc.py @@ -218,8 +218,12 @@ class Pathoc(tcp.TCPClient): if self.use_http2: if not OpenSSL._util.lib.Cryptography_HAS_ALPN: # pragma: nocover - print >> sys.stderr, "HTTP/2 requires ALPN support. Please use OpenSSL >= 1.0.2." - print >> sys.stderr, "Pathoc might not be working as expected without ALPN." + log.write( + self.fp, + "HTTP/2 requires ALPN support. " + "Please use OpenSSL >= 1.0.2. " + "Pathoc might not be working as expected without ALPN." + ) self.protocol = http2.HTTP2Protocol(self) else: # TODO: create HTTP or Websockets protocol diff --git a/libpathod/pathod.py b/libpathod/pathod.py index fc63da18..e6c83185 100644 --- a/libpathod/pathod.py +++ b/libpathod/pathod.py @@ -314,7 +314,6 @@ class PathodHandler(tcp.BaseHandler): self.server.craftanchor )]) - if anchor_gen: spec = anchor_gen.next() |