Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Commit c8f067d

Browse files
committed
Fix incorrectly advertised protocols
1 parent 62df1c0 commit c8f067d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hyper/tls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
NPN_PROTOCOL = 'h2'
14-
H2_NPN_PROTOCOLS = [NPN_PROTOCOL, 'h2-16,' 'h2-15', 'h2-14'] # All h2s we support.
14+
H2_NPN_PROTOCOLS = [NPN_PROTOCOL, 'h2-16', 'h2-15', 'h2-14'] # All h2s we support.
1515
SUPPORTED_NPN_PROTOCOLS = H2_NPN_PROTOCOLS + ['http/1.1']
1616

1717

0 commit comments

Comments
 (0)