Browse Source

move verbose_debug outside of __init__

pull/18/merge
Rossen Georgiev 9 years ago
parent
commit
cc780b249c
  1. 3
      steam/core/cm.py

3
steam/core/cm.py

@ -30,10 +30,9 @@ logger = logging.getLogger("CMClient")
class CMClient(EventEmitter): class CMClient(EventEmitter):
TCP = 0 TCP = 0
UDP = 1 UDP = 1
verbose_debug = False
def __init__(self, protocol=0): def __init__(self, protocol=0):
self.verbose_debug = False
self._init_attributes() self._init_attributes()
self.servers = CMServerList() self.servers = CMServerList()

Loading…
Cancel
Save