Browse Source

bump to v1.0.0-alpha6

fix bug introduced in b47f267aa1
pull/219/head v1.0.0-alpha6
Rossen Georgiev 6 years ago
parent
commit
09f4f51a28
  1. 4
      steam/__init__.py
  2. 3
      steam/core/cm.py

4
steam/__init__.py

@ -1,4 +1,4 @@
__version__ = "1.0.0-alpha5" __version__ = "1.0.0-alpha6"
__author__ = "Rossen Georgiev" __author__ = "Rossen Georgiev"
version_info = (1, 0, 0, 'alpha', 5) version_info = (1, 0, 0, 'alpha', 6)

3
steam/core/cm.py

@ -55,7 +55,6 @@ class CMClient(EventEmitter):
EVENT_EMSG = 0 EVENT_EMSG = 0
"""All incoming messages are emitted with their :class:`.EMsg` number. """All incoming messages are emitted with their :class:`.EMsg` number.
""" """
_LOG = logging.getLogger("CMClient")
PROTOCOL_TCP = 0 #: TCP protocol enum PROTOCOL_TCP = 0 #: TCP protocol enum
PROTOCOL_UDP = 1 #: UDP protocol enum PROTOCOL_UDP = 1 #: UDP protocol enum
@ -78,7 +77,7 @@ class CMClient(EventEmitter):
_recv_loop = None _recv_loop = None
_heartbeat_loop = None _heartbeat_loop = None
_LOG = None _LOG = logging.getLogger("CMClient")
def __init__(self, protocol=PROTOCOL_TCP): def __init__(self, protocol=PROTOCOL_TCP):
self.cm_servers = CMServerList() self.cm_servers = CMServerList()

Loading…
Cancel
Save