From cc780b249c6e2dbb46f7482232308e2c7669f833 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sat, 13 Feb 2016 12:39:02 +0000 Subject: [PATCH] move verbose_debug outside of __init__ --- steam/core/cm.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/steam/core/cm.py b/steam/core/cm.py index 488a0f6..0e10895 100644 --- a/steam/core/cm.py +++ b/steam/core/cm.py @@ -30,10 +30,9 @@ logger = logging.getLogger("CMClient") class CMClient(EventEmitter): TCP = 0 UDP = 1 + verbose_debug = False def __init__(self, protocol=0): - self.verbose_debug = False - self._init_attributes() self.servers = CMServerList()