diff options
author | Alexander Hayden <alexhayden25@gmail.com> | 2020-12-20 00:15:44 -0500 |
---|---|---|
committer | Alexander Hayden <alexhayden25@gmail.com> | 2020-12-20 00:15:44 -0500 |
commit | 2692a68548b91b6d3b0ff1791cd4074d6b202697 (patch) | |
tree | 8027b24400a85867f9a02a51cbff37658b7cb1e2 | |
parent | 168252c6a958c85f317bf762f101babd16dd1cb1 (diff) | |
download | modpackman-2692a68548b91b6d3b0ff1791cd4074d6b202697.tar.gz modpackman-2692a68548b91b6d3b0ff1791cd4074d6b202697.zip |
fix config files being bad
-rw-r--r-- | util.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -56,7 +56,7 @@ def update_self(): for path in pack_lock["global"]["config_files"].split(","): if not path: continue - download_file(f"{base_url}config/{path}", os.path.join("config", path)) + download_text_file(f"{base_url}config/{path}", os.path.join("config", path)) config = load_config() |