Browse Source

fix missing and incorrect return statements

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

2
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
@ -252,6 +251,7 @@ class CMClient(EventEmitter):
is_proto(emsg_id)
)
self._LOG.exception(e)
return
if self.verbose_debug:
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',
'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])

Loading…
Cancel
Save