diff --git a/bot.py b/bot.py index f00f6c9..f58ab2a 100644 --- a/bot.py +++ b/bot.py @@ -263,7 +263,8 @@ async def quote_command(ctx: commands.Context, author: Optional[str], *, quote: else: author = author.strip().title() if quote: - quote = quote.strip().capitalize() + quote = quote.strip() + quote = quote[0].upper() + quote[1::] if author in quotes: author_quotes: List[str] = quotes[author] regex = re.compile(r'[\W]')