aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar aru <[email protected]>2021-11-10 01:26:40 -0500
committerGravatar GitHub <[email protected]>2021-11-10 06:26:40 +0000
commit59c05a8494a5425545d38029b4b26890b6a631c1 (patch)
treea9a31f807d1e9b1f6a6808252e616433522dafac
parentMerge pull request #1946 from python-discord/refactor-modlog (diff)
commands: add pip as an alias to pypi (#1942)
Co-authored-by: Xithrius <[email protected]>
-rw-r--r--bot/exts/info/pypi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/pypi.py b/bot/exts/info/pypi.py
index c3d2e2a3c..dacf7bc12 100644
--- a/bot/exts/info/pypi.py
+++ b/bot/exts/info/pypi.py
@@ -29,7 +29,7 @@ class PyPi(Cog):
def __init__(self, bot: Bot):
self.bot = bot
- @command(name="pypi", aliases=("package", "pack"))
+ @command(name="pypi", aliases=("package", "pack", "pip"))
async def get_package_info(self, ctx: Context, package: str) -> None:
"""Provide information about a specific package from PyPI."""
embed = Embed(title=random.choice(NEGATIVE_REPLIES), colour=Colours.soft_red)