From 98203c0e6b83a40942e50e075712065fb88580a7 Mon Sep 17 00:00:00 2001 From: Marco Thomas Date: Mon, 31 Aug 2020 18:17:09 +0200 Subject: [PATCH] Fix reddit title --- cogs/reddit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/reddit.py b/cogs/reddit.py index 48963c7..57fca15 100644 --- a/cogs/reddit.py +++ b/cogs/reddit.py @@ -34,7 +34,7 @@ class Reddit(commands.Cog): for i in range(0, rand_post): post = next(x for x in posts if not x.stickied) - await ctx.send(f"> {post.title} by {post.author.name}") + await ctx.send(f"> '{post.title}' by {post.author.name}") await ctx.send(post.url) # COG ENDING