Update server.py

recieved -> received
This commit is contained in:
Ikko Eltociear Ashimine 2024-04-26 00:40:39 +09:00 committed by GitHub
parent 625f02c9ce
commit 3efe9aca8c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -343,7 +343,7 @@ async def listener():
json.dump(interpreter.messages, file, indent=4)
# TODO: is triggering seemingly randomly
# logger.info("New user message recieved. Breaking.")
# logger.info("New user message received. Breaking.")
# break
# Also check if there's any new computer messages
@ -351,7 +351,7 @@ async def listener():
with open(conversation_history_path, "w") as file:
json.dump(interpreter.messages, file, indent=4)
logger.info("New computer message recieved. Breaking.")
logger.info("New computer message received. Breaking.")
break
except:
traceback.print_exc()