From 0b201ab33d038c8df4e0599b23b00aa067be03c3 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 24 Nov 2023 15:11:31 +0100 Subject: [PATCH] Update _methods.py: Fix typo --- wolfssl/_methods.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfssl/_methods.py b/wolfssl/_methods.py index bef162b..56a7ac0 100644 --- a/wolfssl/_methods.py +++ b/wolfssl/_methods.py @@ -108,7 +108,7 @@ def __init__(self, protocol, server_side): _lib.wolfDTLSv1_3_client_method() if self.native_object == _ffi.NULL: - raise MemoryError("Unnable to allocate method object") + raise MemoryError("Unable to allocate method object") def __del__(self): if getattr(self, 'native_object', _ffi.NULL) != _ffi.NULL: