From d27412b1d3ef1e2ecf6ef4e880c39a58f662a7dc Mon Sep 17 00:00:00 2001 From: mas6y6 <125225333+mas6y6@users.noreply.github.com> Date: Mon, 2 Dec 2024 20:32:42 -0600 Subject: [PATCH] Some plugin.ymls are still using configversion 1 I fixed the ConfigParser to that --- cipher/parsers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cipher/parsers.py b/cipher/parsers.py index 4e750d8..892c8fa 100644 --- a/cipher/parsers.py +++ b/cipher/parsers.py @@ -201,7 +201,7 @@ def __init__(self, file_path: str): self.name = self.dict["name"] self.displayname = self.dict["displayname"] self.version = self.dict["version"] - self.authors = self.dict["authors"] + self.authors = None self.team = None self.classname = self.dict["class"] self.dependencies = self.dict["dependencies"]