updates ensure_connect decorator function
only calls _connect() if _connected is Falsepull/4420/head
parent
8296511ed0
commit
83fe2170ff
|
@ -49,7 +49,8 @@ BUFSIZE = 65536
|
|||
def ensure_connect(func):
|
||||
@wraps(func)
|
||||
def wrapped(self, *args, **kwargs):
|
||||
self._connect()
|
||||
if not self._connected:
|
||||
self._connect()
|
||||
return func(self, *args, **kwargs)
|
||||
return wrapped
|
||||
|
||||
|
|
Loading…
Reference in New Issue