Skip to content

Commit 09f4f51

Browse files
bump to v1.0.0-alpha6
fix bug introduced in b47f267
1 parent e49d0b1 commit 09f4f51

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

steam/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.0.0-alpha5"
1+
__version__ = "1.0.0-alpha6"
22
__author__ = "Rossen Georgiev"
33

4-
version_info = (1, 0, 0, 'alpha', 5)
4+
version_info = (1, 0, 0, 'alpha', 6)

steam/core/cm.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ class CMClient(EventEmitter):
5555
EVENT_EMSG = 0
5656
"""All incoming messages are emitted with their :class:`.EMsg` number.
5757
"""
58-
_LOG = logging.getLogger("CMClient")
5958

6059
PROTOCOL_TCP = 0 #: TCP protocol enum
6160
PROTOCOL_UDP = 1 #: UDP protocol enum
@@ -78,7 +77,7 @@ class CMClient(EventEmitter):
7877

7978
_recv_loop = None
8079
_heartbeat_loop = None
81-
_LOG = None
80+
_LOG = logging.getLogger("CMClient")
8281

8382
def __init__(self, protocol=PROTOCOL_TCP):
8483
self.cm_servers = CMServerList()

0 commit comments

Comments
 (0)