From e814bab1be9c70b36e6cfa7c039845ef91010749 Mon Sep 17 00:00:00 2001 From: nex Date: Wed, 29 Nov 2023 15:25:51 +0000 Subject: [PATCH] Help???? --- cogs/other.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cogs/other.py b/cogs/other.py index d06f778..e0eea20 100644 --- a/cogs/other.py +++ b/cogs/other.py @@ -1878,7 +1878,8 @@ class OtherCog(commands.Cog): model = model.casefold() try: - model.split(":", 1) + model, tag = model.split(":", 1) + model = model + ":" + tag print("Model %r already has a tag") except ValueError: model = model + ":latest"