diff options
| author | 2020-10-02 01:15:31 +0530 | |
|---|---|---|
| committer | 2020-10-02 01:15:31 +0530 | |
| commit | 28f2916f698ffcd1fe2c9d2cda86a180307980ef (patch) | |
| tree | d9393bcc915858738b45142359fad1ac15f4b6cc | |
| parent | PR #1198: Remove alias cog (diff) | |
Move PEP command embed URL to title
Closes #1176
| -rw-r--r-- | bot/exts/utils/utils.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/exts/utils/utils.py b/bot/exts/utils/utils.py index 6b6941064..566058435 100644 --- a/bot/exts/utils/utils.py +++ b/bot/exts/utils/utils.py @@ -84,7 +84,7 @@ class Utils(Cog):                  # Assemble the embed                  pep_embed = Embed(                      title=f"**PEP {pep_number} - {pep_header['Title']}**", -                    description=f"[Link]({self.base_pep_url}{pep_number:04})", +                    url=f"{self.base_pep_url}{pep_number:04}"                  )                  pep_embed.set_thumbnail(url=ICON_URL) | 
