remove extra commas in pfx command, fixes #188

This commit is contained in:
Abigail 2020-01-29 19:26:09 -05:00
parent 29e75c38e1
commit fde78efc08

View File

@ -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]