aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/protocols/http2.py
diff options
context:
space:
mode:
Diffstat (limited to 'libpathod/protocols/http2.py')
-rw-r--r--libpathod/protocols/http2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpathod/protocols/http2.py b/libpathod/protocols/http2.py
index 44a51410..a098a14e 100644
--- a/libpathod/protocols/http2.py
+++ b/libpathod/protocols/http2.py
@@ -5,7 +5,7 @@ class HTTP2Protocol:
def __init__(self, pathod_handler):
self.pathod_handler = pathod_handler
- self.wire_protocol = http2.connections.HTTP2Protocol(
+ self.wire_protocol = http2.HTTP2Protocol(
self.pathod_handler, is_server=True, dump_frames=self.pathod_handler.http2_framedump
)