fix skip_login check being reversed
This commit is contained in:
parent
9ca16d077d
commit
566446bfd7
|
|
@ -111,7 +111,7 @@ class IS(object):
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
self._connect()
|
self._connect()
|
||||||
if self.skip_login:
|
if not self.skip_login:
|
||||||
self._send_login()
|
self._send_login()
|
||||||
break
|
break
|
||||||
except (LoginError, ConnectionError):
|
except (LoginError, ConnectionError):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue