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]