From ebd2360c8f5ae0646a9cc137e5cde3d845dd39dc Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Wed, 22 Jun 2016 09:43:05 +0100 Subject: [PATCH] SteamClient: removed RuntimeError from send() send method will no longer raise an exception when the instance is not connected --- steam/client/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/steam/client/__init__.py b/steam/client/__init__.py index 3ac2ea3..eb720da 100644 --- a/steam/client/__init__.py +++ b/steam/client/__init__.py @@ -239,8 +239,9 @@ class SteamClient(CMClient, BuiltinBase): :type message: :class:`.Msg`, :class:`.MsgProto` """ if not self.connected: - raise RuntimeError("Cannot send message while not connected") - CMClient.send(self, message) + self._LOG.debug("Trying to send message when not connected. (discarded)") + else: + CMClient.send(self, message) def send_job(self, message): """