Merge pull request #183 from aleclol/master

Fix error on `[p]lovecalculator` command
pull/189/head
bobloy 4 years ago committed by GitHub
commit dbafd6ffd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -53,7 +53,7 @@ class LoveCalculator(Cog):
if result_text is None: if result_text is None:
result_text = f"{x} and {y} aren't compatible 😔" result_text = f"{x} and {y} aren't compatible 😔"
else: else:
result_text.get_text() result_text = result_text.get_text()
result_text = " ".join(result_text.split()) result_text = " ".join(result_text.split())
try: try:

Loading…
Cancel
Save