diff options
Diffstat (limited to 'bot/exts/events/hacktoberfest/_cog.py')
| -rw-r--r-- | bot/exts/events/hacktoberfest/_cog.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/events/hacktoberfest/_cog.py b/bot/exts/events/hacktoberfest/_cog.py index d4733bf6..33b357d1 100644 --- a/bot/exts/events/hacktoberfest/_cog.py +++ b/bot/exts/events/hacktoberfest/_cog.py @@ -72,9 +72,9 @@ class Hacktoberfest(commands.Cog): ) await ctx.send(msg) return - log.info(f"Getting stats for {author_id} linked GitHub account '{github_username}'") + log.info(f"Getting stats for {author_id}'s linked GitHub account: '{github_username}'") else: - log.info(f"Getting stats for '{github_username} as requested by {ctx.author.id}") + log.info(f"Getting stats for '{github_username}' as requested by {ctx.author.id}") await utils.get_stats(ctx, github_username) @in_month(Month.SEPTEMBER, Month.OCTOBER, Month.NOVEMBER) |