From 0ea03f8fecbb5d853ff54b884523b29e841896a0 Mon Sep 17 00:00:00 2001 From: blank X Date: Mon, 16 Nov 2020 15:49:03 +0700 Subject: [PATCH] Fix fix string --- sukuinote/plugins/wikipedia.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sukuinote/plugins/wikipedia.py b/sukuinote/plugins/wikipedia.py index 59e0f01..e09218e 100644 --- a/sukuinote/plugins/wikipedia.py +++ b/sukuinote/plugins/wikipedia.py @@ -22,7 +22,7 @@ async def wikipedia(client, message): return results = await client.get_inline_bot_results(bot.username or bot.id, 'w ' + query) if not results.results: - await message.reply_text('There are no resultss') + await message.reply_text('There are no results') return try: await message.reply_inline_bot_result(results.query_id, results.results[page].id)