diff options
| author | 2020-03-05 09:07:02 +0200 | |
|---|---|---|
| committer | 2020-03-05 09:07:02 +0200 | |
| commit | 028d47821293b6004a7322bdbee28b5a484dd673 (patch) | |
| tree | 801e2715895c44b181438792e7b75f84e343e57e | |
| parent | (Information Cog, !roles command test): Applied empty parameter change. (diff) | |
(Information Cog, !roles command): Added 's' to end of 'role' only if there is more then 1 role.
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/information.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/cogs/information.py b/bot/cogs/information.py index 807c2264d..7921a4932 100644 --- a/bot/cogs/information.py +++ b/bot/cogs/information.py @@ -40,7 +40,7 @@ class Information(Cog):          # Build an embed          embed = Embed( -            title=f"Role information (Total {len(roles)} roles)", +            title=f"Role information (Total {len(roles)} role{'s' * (len(role_list) > 1)})",              colour=Colour.blurple()          ) | 
