From d247b9676de00d76a4f2184610ac5e570af2d504 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Tue, 26 Dec 2017 13:52:57 +0000 Subject: [PATCH] fix missing and incorrect return statements fix #132 --- steam/core/cm.py | 8 ++++---- steam/core/msg/unified.py | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/steam/core/cm.py b/steam/core/cm.py index f34f681..67e1ae9 100644 --- a/steam/core/cm.py +++ b/steam/core/cm.py @@ -8,7 +8,6 @@ from collections import defaultdict from io import BytesIO import gevent -from gevent import event, queue from random import shuffle from steam.steamid import SteamID @@ -248,10 +247,11 @@ class CMClient(EventEmitter): msg = Msg(emsg, message, extended=True) except Exception as e: self._LOG.fatal("Failed to deserialize message: %s (is_proto: %s)", - str(emsg), - is_proto(emsg_id) - ) + str(emsg), + is_proto(emsg_id) + ) self._LOG.exception(e) + return if self.verbose_debug: self._LOG.debug("Incoming: %s\n%s" % (repr(msg), str(msg))) diff --git a/steam/core/msg/unified.py b/steam/core/msg/unified.py index 64a0b7b..6625d2b 100644 --- a/steam/core/msg/unified.py +++ b/steam/core/msg/unified.py @@ -21,15 +21,15 @@ service_lookup = { 'Player': 'steam.protobufs.steammessages_player_pb2', 'PublishedFile': 'steam.protobufs.steammessages_publishedfile_pb2', 'KeyEscrow': 'steam.protobufs.steammessages_secrets_pb2', + 'SiteLicense': 'steam.protobufs.steammessages_site_license_pb2', 'TwoFactor': 'steam.protobufs.steammessages_twofactor_pb2', 'MsgTest': 'steam.protobufs.steammessages_unified_test_pb2', - 'Video': 'steam.protobufs.steammessages_video_pb2', - 'SiteLicense': 'steam.protobufs.steammessages_site_license_pb2', 'UserAccount': 'steam.protobufs.steammessages_useraccount_pb2', + 'Video': 'steam.protobufs.steammessages_video_pb2', } -method_lookup = { -} +method_lookup = {} + def get_um(method_name, response=False): """Get protobuf for given method name @@ -50,7 +50,7 @@ def get_um(method_name, response=False): interface, method, version = match[0] if interface not in service_lookup: - raise None + return None package = import_module(service_lookup[interface])