Ver código fonte

fix(login.py): add error message when retry count is exceeded

master
lanvent 1 ano atrás
pai
commit
008178d737
1 arquivos alterados com 2 adições e 0 exclusões
  1. +2
    -0
      lib/itchat/components/login.py

+ 2
- 0
lib/itchat/components/login.py Ver arquivo

@@ -321,6 +321,8 @@ def start_receiving(self, exitCallback=None, getReceivingFnOnly=False):
retryCount += 1
logger.error(traceback.format_exc())
if self.receivingRetryCount < retryCount:
logger.error("Having tried %s times, but still failed. " % (
retryCount) + "Stop trying...")
self.alive = False
else:
time.sleep(1)


Carregando…
Cancelar
Salvar