mirror of
https://github.com/myned/modufur.git
synced 2024-12-24 14:27:27 +00:00
Removed colon from match output
This commit is contained in:
parent
844afd8600
commit
985791e574
1 changed files with 4 additions and 4 deletions
|
@ -192,7 +192,7 @@ class MsG:
|
||||||
try:
|
try:
|
||||||
await dest.trigger_typing()
|
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
|
c += 1
|
||||||
await asyncio.sleep(self.RATE_LIMIT)
|
await asyncio.sleep(self.RATE_LIMIT)
|
||||||
|
@ -204,7 +204,7 @@ class MsG:
|
||||||
try:
|
try:
|
||||||
await dest.trigger_typing()
|
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
|
c += 1
|
||||||
await asyncio.sleep(self.RATE_LIMIT)
|
await asyncio.sleep(self.RATE_LIMIT)
|
||||||
|
@ -238,7 +238,7 @@ class MsG:
|
||||||
|
|
||||||
post = await scraper.get_post(url)
|
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
|
c += 1
|
||||||
await asyncio.sleep(self.RATE_LIMIT)
|
await asyncio.sleep(self.RATE_LIMIT)
|
||||||
|
@ -252,7 +252,7 @@ class MsG:
|
||||||
|
|
||||||
post = await scraper.get_post(attachment.url)
|
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
|
c += 1
|
||||||
await asyncio.sleep(self.RATE_LIMIT)
|
await asyncio.sleep(self.RATE_LIMIT)
|
||||||
|
|
Loading…
Reference in a new issue