You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log.debug(f"{self.username} get list number error , retry get list , remaining retry times: %d"%self.RetryList)
self.RetryList-=1
sleep(2)
self.get_today_list()
return
else:
os._exit(0)
建议替换成
if len(all_title) != len(all_username):
if self.RetryList > 0:
log.debug(f"{self.username} get list number error , retry get list , remaining retry times: %d" % self.RetryList)
self.RetryList -= 1
sleep(2)
self.get_today_list()
return
else:
self.set_invalid()
self.s.close()
以免影响到其它账号。
The text was updated successfully, but these errors were encountered:
如图,当retry get list达到上限时,程序会退出。
CaoLiu_AutoReply/AutoReply.py
Lines 448 to 456 in d1b6a7d
建议替换成
以免影响到其它账号。
The text was updated successfully, but these errors were encountered: