From 985791e574ff54755d904e69cee971b174810121 Mon Sep 17 00:00:00 2001 From: Myned Date: Sat, 28 Oct 2017 15:44:37 -0400 Subject: [PATCH] Removed colon from match output --- src/main/cogs/booru.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/cogs/booru.py b/src/main/cogs/booru.py index 72a718c..0bf1f7e 100644 --- a/src/main/cogs/booru.py +++ b/src/main/cogs/booru.py @@ -192,7 +192,7 @@ class MsG: try: await dest.trigger_typing() - await dest.send('**Probable match:**\n{}'.format(await scraper.get_post(url))) + await dest.send('**Probable match**\n{}'.format(await scraper.get_post(url))) c += 1 await asyncio.sleep(self.RATE_LIMIT) @@ -204,7 +204,7 @@ class MsG: try: await dest.trigger_typing() - await dest.send('**Probable match:**\n{}'.format(await scraper.get_post(attachment.url))) + await dest.send('**Probable match**\n{}'.format(await scraper.get_post(attachment.url))) c += 1 await asyncio.sleep(self.RATE_LIMIT) @@ -238,7 +238,7 @@ class MsG: post = await scraper.get_post(url) - await dest.send('**Probable match:**\n{}'.format(await scraper.get_image(post))) + await dest.send('**Probable match**\n{}'.format(await scraper.get_image(post))) c += 1 await asyncio.sleep(self.RATE_LIMIT) @@ -252,7 +252,7 @@ class MsG: post = await scraper.get_post(attachment.url) - await dest.send('**Probable match:**\n{}'.format(await scraper.get_image(post))) + await dest.send('**Probable match**\n{}'.format(await scraper.get_image(post))) c += 1 await asyncio.sleep(self.RATE_LIMIT)