diff options
author | 2021-03-19 18:53:42 +0200 | |
---|---|---|
committer | 2021-03-19 18:53:42 +0200 | |
commit | 1127da5c9a50bd01155b993eb0bac3e540410df9 (patch) | |
tree | b8fe4972b7049ec2b53ca421824453c7bb5a3a51 | |
parent | Replace mentions for ID's in watchlist lists (diff) |
Default message in review when no nomination reason given
-rw-r--r-- | bot/exts/recruitment/talentpool/_review.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/recruitment/talentpool/_review.py b/bot/exts/recruitment/talentpool/_review.py index 5fb1a505f..db710c278 100644 --- a/bot/exts/recruitment/talentpool/_review.py +++ b/bot/exts/recruitment/talentpool/_review.py @@ -87,7 +87,7 @@ class Reviewer: opening = f"<@&{Roles.moderators}> <@&{Roles.admins}>\n{member.mention} ({member}) for Helper!" current_nominations = "\n\n".join( - f"**<@{entry['actor']}>:** {entry['reason']}" for entry in nomination['entries'] + f"**<@{entry['actor']}>:** {entry['reason'] or '*no reason given*'}" for entry in nomination['entries'] ) current_nominations = f"**Nominated by:**\n{current_nominations}" |