Browse Source

fix missing and incorrect return statements

fix #132
0.9
Rossen Georgiev 7 years ago
parent
commit
d247b9676d
  1. 8
      steam/core/cm.py
  2. 10
      steam/core/msg/unified.py

8
steam/core/cm.py

@ -8,7 +8,6 @@ from collections import defaultdict
from io import BytesIO from io import BytesIO
import gevent import gevent
from gevent import event, queue
from random import shuffle from random import shuffle
from steam.steamid import SteamID from steam.steamid import SteamID
@ -248,10 +247,11 @@ class CMClient(EventEmitter):
msg = Msg(emsg, message, extended=True) msg = Msg(emsg, message, extended=True)
except Exception as e: except Exception as e:
self._LOG.fatal("Failed to deserialize message: %s (is_proto: %s)", self._LOG.fatal("Failed to deserialize message: %s (is_proto: %s)",
str(emsg), str(emsg),
is_proto(emsg_id) is_proto(emsg_id)
) )
self._LOG.exception(e) self._LOG.exception(e)
return
if self.verbose_debug: if self.verbose_debug:
self._LOG.debug("Incoming: %s\n%s" % (repr(msg), str(msg))) self._LOG.debug("Incoming: %s\n%s" % (repr(msg), str(msg)))

10
steam/core/msg/unified.py

@ -21,15 +21,15 @@ service_lookup = {
'Player': 'steam.protobufs.steammessages_player_pb2', 'Player': 'steam.protobufs.steammessages_player_pb2',
'PublishedFile': 'steam.protobufs.steammessages_publishedfile_pb2', 'PublishedFile': 'steam.protobufs.steammessages_publishedfile_pb2',
'KeyEscrow': 'steam.protobufs.steammessages_secrets_pb2', 'KeyEscrow': 'steam.protobufs.steammessages_secrets_pb2',
'SiteLicense': 'steam.protobufs.steammessages_site_license_pb2',
'TwoFactor': 'steam.protobufs.steammessages_twofactor_pb2', 'TwoFactor': 'steam.protobufs.steammessages_twofactor_pb2',
'MsgTest': 'steam.protobufs.steammessages_unified_test_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', 'UserAccount': 'steam.protobufs.steammessages_useraccount_pb2',
'Video': 'steam.protobufs.steammessages_video_pb2',
} }
method_lookup = { method_lookup = {}
}
def get_um(method_name, response=False): def get_um(method_name, response=False):
"""Get protobuf for given method name """Get protobuf for given method name
@ -50,7 +50,7 @@ def get_um(method_name, response=False):
interface, method, version = match[0] interface, method, version = match[0]
if interface not in service_lookup: if interface not in service_lookup:
raise None return None
package = import_module(service_lookup[interface]) package = import_module(service_lookup[interface])

Loading…
Cancel
Save