1
Fork 0
mirror of https://github.com/wlinator/luminara.git synced 2024-10-02 18:03:12 +00:00

Refactor logger error message to use .env instead of creds.yaml

This commit is contained in:
wlinator 2024-07-17 08:49:10 -04:00
parent 4488111b28
commit e3494f36f3

View file

@ -98,7 +98,7 @@ if __name__ == "__main__":
load_modules()
if not CONST.TOKEN:
logger.error("token is not set in creds.yaml")
logger.error("token is not set in .env")
exit(1)
client.run(CONST.TOKEN)