From 764d47f3cf8e798cce7e88e9b019460b26f40261 Mon Sep 17 00:00:00 2001 From: elliot Date: Sat, 25 Sep 2021 11:05:18 +0200 Subject: [PATCH] Fix version check --- cogs/timings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/timings.py b/cogs/timings.py index 46f3462..6a0c231 100644 --- a/cogs/timings.py +++ b/cogs/timings.py @@ -83,7 +83,7 @@ class Timings(commands.Cog): if version_result: if compare_versions(version_result, TIMINGS_CHECK["version"]) == -1: version = version.replace("git-", "").replace("MC: ", "") - embed_var.add_field(name="❌ Outdated",value=f"You are using `{version}`, you should update to `{TIMINGS_CHECK["version"]}`.") + embed_var.add_field(name="❌ Outdated", value=f'You are using `{version}`. Update to `{TIMINGS_CHECK["version"]}`.') else: embed_var.add_field(name="❗ Value Error", value=f'Could not locate version from `{version}`')