diff options
author | 2020-10-22 07:56:51 +0000 | |
---|---|---|
committer | 2020-10-22 07:56:51 +0000 | |
commit | 664c64ffb9b163e663740fd9fe56fc977fb1c36d (patch) | |
tree | 2a6ea269c46971493024e5f81618ed0a26253d89 /bot/exts/halloween/hacktoberstats.py | |
parent | improve implementation with return value (diff) |
better no-prs message
Diffstat (limited to 'bot/exts/halloween/hacktoberstats.py')
-rw-r--r-- | bot/exts/halloween/hacktoberstats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/halloween/hacktoberstats.py b/bot/exts/halloween/hacktoberstats.py index 9fb71651..1640e6cf 100644 --- a/bot/exts/halloween/hacktoberstats.py +++ b/bot/exts/halloween/hacktoberstats.py @@ -187,7 +187,7 @@ class HacktoberStats(commands.Cog): stats_embed = await self.build_embed(github_username, prs) await ctx.send('Here are some stats!', embed=stats_embed) else: - await ctx.send(f"No valid hacktoberfest contributions found for '{github_username}'") + await ctx.send(f"No valid hacktoberfest PRs found for '{github_username}'") async def build_embed(self, github_username: str, prs: List[dict]) -> discord.Embed: """Return a stats embed built from github_username's PRs.""" |