From e45d210517ae56abfec61ce1a8db1fc6ed7c4b4b Mon Sep 17 00:00:00 2001 From: Louie Shprung Date: Mon, 3 Apr 2023 17:16:25 -0700 Subject: Get buttons printing --- .../endpoints/__pycache__/get_plist.cpython-39.pyc | Bin 1814 -> 1814 bytes backend/endpoints/get_plist.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) (limited to 'backend/endpoints') diff --git a/backend/endpoints/__pycache__/get_plist.cpython-39.pyc b/backend/endpoints/__pycache__/get_plist.cpython-39.pyc index d70e425..5410abf 100644 Binary files a/backend/endpoints/__pycache__/get_plist.cpython-39.pyc and b/backend/endpoints/__pycache__/get_plist.cpython-39.pyc differ diff --git a/backend/endpoints/get_plist.py b/backend/endpoints/get_plist.py index 6d2ca4c..1fda2d5 100644 --- a/backend/endpoints/get_plist.py +++ b/backend/endpoints/get_plist.py @@ -19,7 +19,7 @@ class Get_Plist: plist_path = os.path.join(docset_root, "Contents", "Info.plist") if(os.path.isfile(plist_path)): if(Get_Plist.parse_plist(plist_path)): - Get_Plist.output["docsets"][-1]["plist_path"] = plist_path + Get_Plist.output["docsets"][-1]["docset_root"] = docset_root for f in ["icon.png", "icon@2x.png"]: if os.path.isfile(os.path.join(docset_root, f)): Get_Plist.output["docsets"][-1][f] = os.path.join(docset_root, f) -- cgit