We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84b497f commit 60303e6Copy full SHA for 60303e6
1 file changed
bot/utils/quote.py
@@ -26,7 +26,7 @@ async def random_quote(bot: Bot) -> str:
26
async with bot.http_session.get(RANDOM_QUOTE_URL) as response:
27
response.raise_for_status()
28
data = await response.json()
29
- quote = f"{data[0]['q']}\n*\\— {data[0]['a']}*"
+ quote = f"{data[0]['q']}\n*— {data[0]['a']}*"
30
return quote
31
32
@@ -43,7 +43,7 @@ async def daily_quote(bot: Bot) -> str:
43
async with bot.http_session.get(DAILY_QUOTE_URL) as resp:
44
resp.raise_for_status()
45
data = await resp.json()
46
47
48
ttl = seconds_until_midnight_utc()
49
0 commit comments