summaryrefslogtreecommitdiff
path: root/backend/endpoints/get_plist.py
diff options
context:
space:
mode:
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)