From 3dda4b8d35ff100ea797afc77b359837231b686e Mon Sep 17 00:00:00 2001 From: nereg Date: Sat, 19 Sep 2020 11:00:28 +0300 Subject: [PATCH] Fix missing self parameter in async code. Fixes #14. --- a2s/a2sasync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/a2s/a2sasync.py b/a2s/a2sasync.py index 7c6c8bc..8eb3180 100644 --- a/a2s/a2sasync.py +++ b/a2s/a2sasync.py @@ -47,7 +47,7 @@ class A2SProtocol(asyncio.DatagramProtocol): self.error = exc self.error_event.set() - def raise_on_error(): + def raise_on_error(self): error = self.error self.error = None self.error_event.clear()