summaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
Diffstat (limited to 'backend')
-rw-r--r--backend/__pycache__/config.cpython-39.pycbin426 -> 413 bytes
-rw-r--r--backend/endpoints/__pycache__/get_plist.cpython-39.pycbin1814 -> 1814 bytes
-rw-r--r--backend/endpoints/get_plist.py2
3 files changed, 1 insertions, 1 deletions
diff --git a/backend/__pycache__/config.cpython-39.pyc b/backend/__pycache__/config.cpython-39.pyc
index 662d54d..03ffd8d 100644
--- a/backend/__pycache__/config.cpython-39.pyc
+++ b/backend/__pycache__/config.cpython-39.pyc
Binary files differ
diff --git a/backend/endpoints/__pycache__/get_plist.cpython-39.pyc b/backend/endpoints/__pycache__/get_plist.cpython-39.pyc
index d70e425..5410abf 100644
--- a/backend/endpoints/__pycache__/get_plist.cpython-39.pyc
+++ b/backend/endpoints/__pycache__/get_plist.cpython-39.pyc
Binary files 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)