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"