Skip to content

Commit

Permalink
Fixed a typo in the Base64 commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonah Pierce committed Feb 10, 2021
1 parent 9ba261b commit 4ea33cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/code/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ async def base_64_decode(self, ctx, *, text: str=None):
# Try to decode the text
try:
embed = Embed(
title = "Encoded to Base64",
title = "Decoded from Base64",
description = b64decode(text.encode()).decode(),
colour = await get_embed_color(ctx.author)
)
Expand Down

0 comments on commit 4ea33cd

Please sign in to comment.