From 7997887ed5404e0c3b4bcc9214305d975fade43f Mon Sep 17 00:00:00 2001 From: Tim Wilson Date: Fri, 11 Sep 2020 16:41:42 -0600 Subject: [PATCH] Update bot.py --- bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index 7e1e8f6..e71c98e 100644 --- a/bot.py +++ b/bot.py @@ -1112,7 +1112,7 @@ async def add(message, content = ""): except: await message.channel.send('‼️ Error communicating with Transmission ‼️') return - torStr.append("From file: {}".format(tor.name)) + torStr.append("📄 {}".format(tor.name)) for t in content.strip().split(" "): if len(t) > 5: @@ -1128,7 +1128,7 @@ async def add(message, content = ""): except: await message.channel.send('‼️ Error communicating with Transmission ‼️') return - torStr.append("From link: {}".format(tor.name)) + torStr.append("🧲 {}".format(tor.name)) if len(torStr) > 0: await message.channel.send('🟢 Added torrent{}:\n{}'.format("s" if len(torStr) > 1 else "", '\n'.join(torStr)))