Browse Source

Merged conditionals.

pull/2/head
Richard Neumann 4 years ago
parent
commit
22c4dd81c3
  1. 5
      rcon/proto.py

5
rcon/proto.py

@ -186,9 +186,8 @@ class Client:
response = self.communicate(request)
if response.id != request.id:
if self.passwd is not None:
if self.login(self.passwd):
return self.run(command, *arguments)
if self.passwd is not None and self.login(self.passwd):
return self.run(command, *arguments)
raise RuntimeError('Request ID mismatch.')

Loading…
Cancel
Save