1
Fork 0
mirror of https://github.com/Steffo99/greed.git synced 2024-11-21 13:34:18 +00:00

Display the bot's username instead of "greed" in the starting message

This commit is contained in:
Steffo 2020-07-06 23:50:09 +02:00
parent 1ecc874061
commit faaeb08773
Signed by: steffo
GPG key ID: 896A80F55F7C97F0

View file

@ -39,7 +39,7 @@ def main():
# Test the specified token
log.debug("Testing bot token...")
try:
bot.get_me()
me = bot.get_me()
except telegram.error.Unauthorized:
logging.fatal("The token you have entered in the config file is invalid. Fix it, then restart greed.")
sys.exit(1)
@ -58,7 +58,7 @@ def main():
next_update = None
# Notify on the console that the bot is starting
log.info("greed is starting!")
log.info(f"@{me.username} is starting!")
# Main loop of the program
while True: