From af1c8ec35ce394d6b09acc02ed650879ef06a2f4 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 12 Aug 2019 14:16:47 -0400 Subject: [PATCH] adding missing comma in wallet_server_monitor --- lbry/scripts/wallet_server_monitor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lbry/scripts/wallet_server_monitor.py b/lbry/scripts/wallet_server_monitor.py index 3d0b7addc..3e7240f80 100644 --- a/lbry/scripts/wallet_server_monitor.py +++ b/lbry/scripts/wallet_server_monitor.py @@ -107,9 +107,9 @@ async def monitor(db, server, slackclient): except (aiohttp.ClientConnectorError, asyncio.TimeoutError): await boris_says(slackclient, random.choice([ - f"Guys, we have a problem! Nobody home at {server}. Will check on it again in {delay} seconds." + f"Guys, we have a problem! Nobody home at {server}. Will check on it again in {delay} seconds.", f"Something wrong with {server}. I think dead. Will poke it again in {delay} seconds.", - f"Don't hear anything from {server}, maybe dead. Will try it again in {delay} seconds." + f"Don't hear anything from {server}, maybe dead. Will try it again in {delay} seconds.", ])) await asyncio.sleep(delay) delay += 30