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."""