From 92ca3b22b8b792ec1e6c6d1c73797c888239b6c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20N=C3=B8rgaard?= Date: Mon, 24 Jun 2024 13:47:52 +0100 Subject: [PATCH] fix bug in async rcon --- rcon/source/async_rcon.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rcon/source/async_rcon.py b/rcon/source/async_rcon.py index 095873a..2ffc22b 100644 --- a/rcon/source/async_rcon.py +++ b/rcon/source/async_rcon.py @@ -5,7 +5,6 @@ from asyncio import StreamReader, StreamWriter, open_connection, wait_for from rcon.exceptions import SessionTimeout, WrongPassword from rcon.source.proto import Packet, Type - __all__ = ["rcon"] @@ -77,7 +76,7 @@ async def rcon( raise WrongPassword() request = Packet.make_command(command, *arguments, encoding=encoding) - response = await communicate(reader, writer, request, raise_unexpected_terminator) + response = await communicate(reader, writer, request, raise_unexpected_terminator=raise_unexpected_terminator) await close(writer) if enforce_id and response.id != request.id: