()
| 103 | self.logger.info("Password invalid. Needs to be 'pwd'") |
| 104 | |
| 105 | def action(): |
| 106 | eventManager.fire(Events.INTERNET_CONNECTING_STATUS, {'status': 'connecting'}) |
| 107 | time.sleep(2) |
| 108 | eventManager.fire(Events.INTERNET_CONNECTING_STATUS, {'status': 'failed', 'reason': "no_secrets"}) |
| 109 | |
| 110 | timer = threading.Timer(3, action) |
| 111 | timer.daemon = True |