diff options
| author | 2020-06-01 08:19:21 +0300 | |
|---|---|---|
| committer | 2020-06-01 08:19:21 +0300 | |
| commit | ea937e5a69b4cf233216510c96800bdf5940ff16 (patch) | |
| tree | f65dadbd17a7a07a32690035d6b6181351d2c1f3 | |
| parent | Source: Update `get_source_link` docstring (diff) | |
Source: Remove showing aliases for commands
| -rw-r--r-- | bot/cogs/source.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bot/cogs/source.py b/bot/cogs/source.py index 50fd4599d..57ae17f77 100644 --- a/bot/cogs/source.py +++ b/bot/cogs/source.py @@ -113,8 +113,7 @@ class BotSource(commands.Cog): else: description = source_object.short_doc - aliases_string = f" (or {', '.join(source_object.aliases)})" if source_object.aliases else "" - title = f"Command: {source_object.qualified_name}{aliases_string}" + title = f"Command: {source_object.qualified_name}" elif isinstance(source_object, str): title = f"Tag: {source_object}" description = "" |