Logic typo

This commit is contained in:
Fabio Manganiello 2021-05-15 23:50:23 +02:00
parent d767cafafe
commit 85d975edc6
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class JoystickJstestBackend(Backend):
def _wait_ready(self):
self.logger.info(f'Waiting for joystick device on {self.device}')
while not self.should_stop() or not os.path.exists(self.device):
while not self.should_stop() and not os.path.exists(self.device):
time.sleep(1)
if self.should_stop():