From a9842c0768f575e43d85322f511148a9b303b2c2 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Sat, 26 Dec 2020 13:56:15 +0100 Subject: [PATCH] Refac. --- rcon/proto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcon/proto.py b/rcon/proto.py index 73256c2..bd4297f 100644 --- a/rcon/proto.py +++ b/rcon/proto.py @@ -41,7 +41,7 @@ class LittleEndianSignedInt32(int): super().__init__() if not self.MIN <= self <= self.MAX: - raise ValueError('Signed int32 out of bounds:', self) + raise ValueError('Signed int32 out of bounds:', int(self)) def __bytes__(self): """Returns the integer as signed little endian."""