Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bot/exts/recruitment/talentpool/_cog.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ async def _watch_user(self, ctx: Context, user: MemberOrUser, reason: str) -> No
}
)

msg = f"✅ The nomination for {user} has been added to the talent pool"
msg = f"✅ The nomination for {user.mention} has been added to the talent pool"
if history:
msg += f"\n\n({len(history)} previous nominations in total)"

Expand Down Expand Up @@ -311,7 +311,7 @@ async def unwatch_command(self, ctx: Context, user: MemberOrUser, *, reason: str
return

if await self.unwatch(user.id, reason):
await ctx.send(f":white_check_mark: Messages sent by {user} will no longer be relayed")
await ctx.send(f":white_check_mark: Messages sent by {user.mention} will no longer be relayed")
else:
await ctx.send(":x: The specified user does not have an active nomination")

Expand Down Expand Up @@ -344,7 +344,7 @@ async def edit_reason_command(self, ctx: Context, nomination_id: int, actor: Mem
return

if not any(entry["actor"] == actor.id for entry in nomination["entries"]):
await ctx.send(f":x: {actor} doesn't have an entry in this nomination.")
await ctx.send(f":x: {actor.mention} doesn't have an entry in this nomination.")
return

self.log.trace(f"Changing reason for nomination with id {nomination_id} of actor {actor} to {repr(reason)}")
Expand Down