Browse Source

fix bug in async rcon (#33)

fix bug in async rcon
master
Alex Nørgaard 9 months ago
committed by GitHub
parent
commit
a7cd314826
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      rcon/source/async_rcon.py

2
rcon/source/async_rcon.py

@ -77,7 +77,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