From 0b6164e93e668b3b8e35723aa65b97a9405d57fb Mon Sep 17 00:00:00 2001 From: bobloy Date: Wed, 21 Feb 2018 16:55:15 -0500 Subject: [PATCH] thoughts --- howdoi/howdoi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/howdoi/howdoi.py b/howdoi/howdoi.py index 153c255..eee3f35 100644 --- a/howdoi/howdoi.py +++ b/howdoi/howdoi.py @@ -5,7 +5,7 @@ from discord.ext import commands from .utils.chat_formatting import pagify from .utils.chat_formatting import box -from .howdoi_source import howdoi +from .howdoi_source import howdoi as hdi, Answer class Howdoi: @@ -75,7 +75,7 @@ class Howdoi: await self.config.query.set(self.query) - out = howdoi.howdoi(await self.config.all()) # .encode('utf-8', 'ignore') + out = hdi.howdoi(await self.config.all()) # .encode('utf-8', 'ignore') if await self.config.links(): await ctx.send(out)