From 22c4dd81c3029298e8f7215c64e90ed572376004 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Thu, 7 Jan 2021 18:02:26 +0100 Subject: [PATCH] Merged conditionals. --- rcon/proto.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/rcon/proto.py b/rcon/proto.py index bb57a8c..fa411f7 100644 --- a/rcon/proto.py +++ b/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.')