I finally got time to update my code, and realized that I never even knew that python dictionaries had that get method. What I would have done, and do all through my code isGDError404 wrote: Wed May 27, 2026 2:36 am Hi PlayfulGuy! I'm running the script from source on linux, and I'm getting a crash when trying to download The Estim Experiment V2 with "Adapt javascript for GuideMe" disabled. Just before the program crashes, the log includes this line
It seems like changing the if statement toCode: Select all
File "/home/username/Downloads/MiloDownloader/EOSTease.py", line 2986, in add_init_module if script['init'] != "": ~~~~~~^^^^^^^^ KeyError: 'init'fixes the issue. Apologies for not having the whole log, I'm having to type out the log manually as it doesn't save anywhere and I just have a screenshot as the program is closingCode: Select all
if script.get('init', "") != "":
Code: Select all
if 'init' in script and script['init'] != "":Thanks again,
PG

