Browse Source

SteamClient: removed RuntimeError from send()

send method will no longer raise an exception when the instance
is not connected
pull/41/head
Rossen Georgiev 9 years ago
parent
commit
ebd2360c8f
  1. 5
      steam/client/__init__.py

5
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):
"""

Loading…
Cancel
Save