diff options
author | Dylan Jones <dylanjones2011@gmail.com> | 2020-12-13 17:06:02 -0500 |
---|---|---|
committer | Dylan Jones <dylanjones2011@gmail.com> | 2020-12-13 17:06:02 -0500 |
commit | 3aba396782f4d4abcafef2bfe7c2514409f4c9b8 (patch) | |
tree | 880930e6dde4c122b0cf40bb42cd25f1c5ff9dd2 /util.py | |
parent | a18a7161690d6c9b8560375aeea2ba2f66277b40 (diff) | |
download | modpackman-3aba396782f4d4abcafef2bfe7c2514409f4c9b8.tar.gz modpackman-3aba396782f4d4abcafef2bfe7c2514409f4c9b8.zip |
Actually really add chisel and bits this time
Diffstat (limited to 'util.py')
-rw-r--r-- | util.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -258,8 +258,8 @@ def firefox(): # for ~~cursed~~ windows people, put geckodriver in the folder next to modpackman.py if(os.path.exists("../../geckodriver.exe")): - return Firefox(executable_path='../../geckodriver') - return Firefox() + return Firefox(executable_path='../../geckodriver', options=options) + return Firefox(options=options) # Configuration is automatically loaded from pack.ini and local-config.ini, |