Replies: 3 comments 5 replies
-
I was not getting the default profile path so I fixed the parser. def _get_default_profile_folder():
config_path = FIREFOX_ROOT.joinpath("profiles.ini")
print(f"Reading {config_path}...")
config_parser = ConfigParser(strict=False)
config_parser.read(config_path)
for section in config_parser.sections():
if 'Default' in config_parser[section]:
if config_parser[section]['Default']:
print("Default detected: " + section)
return FIREFOX_ROOT.joinpath(config_parser[section]['Default']) |
Beta Was this translation helpful? Give feedback.
-
Ohh, fascinating! @Lastnight-777 would you be okay with sharing the contents of your Indeed, when making a new profile, there is no mention of a Either way, thank you for reporting! At the very least, I'll see to add some kind of fallback to have your case work by default sooner than later. But I do wanna make sure I don't accidentally bug the installer 😌 |
Beta Was this translation helpful? Give feedback.
-
@Denperidge I could do the vanilla script but cant do --help. how to do --help in this script? sorry for the noob question, maybe a docs on this? |
Beta Was this translation helpful? Give feedback.
-
Check out install.py created by @Denperidge! The details are here.
Please leave any feedback or questions below.
This discussion was created from the release 131.0.
Beta Was this translation helpful? Give feedback.
All reactions