diff options
| -rw-r--r-- | bot/cogs/utils.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/cogs/utils.py b/bot/cogs/utils.py index db8f63ff4..f35ff0f03 100644 --- a/bot/cogs/utils.py +++ b/bot/cogs/utils.py @@ -67,7 +67,8 @@ class Utils(Cog):              await ctx.invoke(self.bot.get_command("help"), "pep")              return -        # Handle PEP 0 directly due it's not available like other PEPs (use constants) +        # Handle PEP 0 directly due it's static constant in PEPs GitHub repo in Python file, not .rst or .txt so it +        # can't be accessed like other PEPs.          if pep_number == 0:              pep_embed = Embed(                  title=f"**PEP 0 - {PEP0_TITLE}**",  |