Browse Source

fix bug in async rcon

pull/33/head
Alex Nørgaard 9 months ago
parent
commit
92ca3b22b8
Failed to extract signature
  1. 3
      rcon/source/async_rcon.py

3
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:

Loading…
Cancel
Save