summaryrefslogtreecommitdiff
path: root/backend/endpoints/get_plist.py
diff options
context:
space:
mode:
authorLouie Shprung <lshprung@scu.edu>2023-04-03 17:16:25 -0700
committerLouie Shprung <lshprung@scu.edu>2023-04-03 17:16:25 -0700
commite45d210517ae56abfec61ce1a8db1fc6ed7c4b4b (patch)
treebc10dd29333025b8eaf77ed68164e32d4ce15c0f /backend/endpoints/get_plist.py
parentd209ff852ff153b067e975deda28cbdfa7d0dd41 (diff)
Get buttons printing
Diffstat (limited to 'backend/endpoints/get_plist.py')
-rw-r--r--backend/endpoints/get_plist.py2
1 files changed, 1 insertions, 1 deletions
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)