From fde78efc0892f91f05814925bd2c8ffb79318a1d Mon Sep 17 00:00:00 2001 From: Abigail Date: Wed, 29 Jan 2020 19:26:09 -0500 Subject: [PATCH] remove extra commas in pfx command, fixes #188 --- exts/ham.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exts/ham.py b/exts/ham.py index 71766ba..e904162 100644 --- a/exts/ham.py +++ b/exts/ham.py @@ -73,8 +73,8 @@ class HamCog(commands.Cog): return embed = cmn.embed_factory(ctx) if country.lower() not in callsign_info.options: - embed.title = f'{country} not found!', - embed.description = f'Valid countries: {", ".join(callsign_info.options.keys())}', + embed.title = f'{country} not found!' + embed.description = f'Valid countries: {", ".join(callsign_info.options.keys())}' embed.colour = cmn.colours.bad else: embed.title = callsign_info.options[country.lower()][0]