From 09f4f51a287ee7aec1f159c7e8098add5f14bed3 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Tue, 3 Sep 2019 23:02:00 +0100 Subject: [PATCH] bump to v1.0.0-alpha6 fix bug introduced in b47f267aa11533b451bb251bef4e6d1d7079d44b --- steam/__init__.py | 4 ++-- steam/core/cm.py | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/steam/__init__.py b/steam/__init__.py index ba815a1..4075f1b 100644 --- a/steam/__init__.py +++ b/steam/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.0.0-alpha5" +__version__ = "1.0.0-alpha6" __author__ = "Rossen Georgiev" -version_info = (1, 0, 0, 'alpha', 5) +version_info = (1, 0, 0, 'alpha', 6) diff --git a/steam/core/cm.py b/steam/core/cm.py index 81d5ffb..83cfb22 100644 --- a/steam/core/cm.py +++ b/steam/core/cm.py @@ -55,7 +55,6 @@ class CMClient(EventEmitter): EVENT_EMSG = 0 """All incoming messages are emitted with their :class:`.EMsg` number. """ - _LOG = logging.getLogger("CMClient") PROTOCOL_TCP = 0 #: TCP protocol enum PROTOCOL_UDP = 1 #: UDP protocol enum @@ -78,7 +77,7 @@ class CMClient(EventEmitter): _recv_loop = None _heartbeat_loop = None - _LOG = None + _LOG = logging.getLogger("CMClient") def __init__(self, protocol=PROTOCOL_TCP): self.cm_servers = CMServerList()