fixed the ping formatting
This commit is contained in:
parent
da49859b9d
commit
edb0641889
1 changed files with 2 additions and 1 deletions
|
|
@ -86,7 +86,8 @@ def handle(message):
|
||||||
bot.reply_to(message, 'work in progress...')
|
bot.reply_to(message, 'work in progress...')
|
||||||
elif message.text == '/ping':
|
elif message.text == '/ping':
|
||||||
check_tailscale()
|
check_tailscale()
|
||||||
bot.reply_to(message, f'ping status: \n\n{reach}')
|
ping_status = '\n'.join(reach)
|
||||||
|
bot.reply_to(message, f'ping status:\n\n{ping_status}')
|
||||||
|
|
||||||
#polling
|
#polling
|
||||||
bot.polling()
|
bot.polling()
|
||||||
Loading…
Add table
Reference in a new issue