fiddling with licenses.json file pathing

This commit is contained in:
alexzvk 2022-11-28 23:19:22 -05:00
parent 5c37807754
commit cda8b5bc46

View File

@ -331,7 +331,7 @@ def handle_licenses():
with open(os.path.join("licenses", "-temporary-placeholder.txt")) as f:
selected_title = f.readline()
with open(os.path.join(os.pardir, "licenses.json")) as f:
with open(os.getcwd(), 'r') as f:
titles_dict = json.load(f)
# access the title to filename dictionary to find the correct file
# using a dictionary instead of looping reduces time complexity