Reformatted error messages

pull/8/head
sgoudham 4 years ago
parent f63e008871
commit 18cb7c8378

@ -52,7 +52,7 @@ async def ban_members(message, targets, reason):
# Send error message if the User could not be banned # Send error message if the User could not be banned
else: else:
embed = Embed(description="**User {} could not be Banned!**".format(target.mention)) embed = Embed(description="**{} Could Not Be Banned!**".format(target.mention))
await message.channel.send(embed=embed) await message.channel.send(embed=embed)
@ -97,7 +97,7 @@ async def kick_members(message, targets, reason):
# Send error message if the User could not be kicked # Send error message if the User could not be kicked
else: else:
embed = Embed(description="**User {} could not be Kicked!**".format(target.mention)) embed = Embed(description="**{} Could Not Be Kicked!**".format(target.mention))
await message.channel.send(embed=embed) await message.channel.send(embed=embed)

Loading…
Cancel
Save