diff options
author | Dylan Jones <dylanjones2011@gmail.com> | 2020-12-19 20:19:56 -0500 |
---|---|---|
committer | Dylan Jones <dylanjones2011@gmail.com> | 2020-12-19 20:19:56 -0500 |
commit | ed471e62c880dd8effbf9f536681e800b1d7e32c (patch) | |
tree | f84b161adaef291c1b9c3dcd60c26aba1589f3b5 /installer.py | |
parent | a47f0a0dd1dd43f90a1a86fa6b67ae551c13a844 (diff) | |
download | modpackman-ed471e62c880dd8effbf9f536681e800b1d7e32c.tar.gz modpackman-ed471e62c880dd8effbf9f536681e800b1d7e32c.zip |
Fix auto downloader
Diffstat (limited to 'installer.py')
-rwxr-xr-x | installer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installer.py b/installer.py index 6e2a758..05384ed 100755 --- a/installer.py +++ b/installer.py @@ -80,7 +80,7 @@ def setup_forge(profile_id): def main(): # if we're in a bundle, download the latest pack data from remote source if hasattr(sys, "_MEIPASS"): - update_self() + util.update_self() persistent_data_path = os.path.join(config["pack"]["location"], "modpackman.json") if os.path.exists(persistent_data_path): |