We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2388cb9 commit c1b7ff2Copy full SHA for c1b7ff2
tlslite/handshakesettings.py
@@ -658,7 +658,7 @@ def _sanityCheckExtensions(other):
658
not 64 <= other.record_size_limit <= 2**14 + 1:
659
raise ValueError("record_size_limit cannot exceed 2**14+1 bytes")
660
661
- bad_ec_ext = [ECPointFormat.toRepr(rep) for rep in other.ec_point_formats if
+ bad_ec_ext = [ECPointFormat.toStr(rep) for rep in other.ec_point_formats if
662
rep not in EC_POINT_FORMATS]
663
if bad_ec_ext:
664
raise ValueError("Unknown EC point format provided: "
0 commit comments