aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Hayden <alexhayden25@gmail.com>2020-12-20 00:15:44 -0500
committerAlexander Hayden <alexhayden25@gmail.com>2020-12-20 00:15:44 -0500
commit2692a68548b91b6d3b0ff1791cd4074d6b202697 (patch)
tree8027b24400a85867f9a02a51cbff37658b7cb1e2
parent168252c6a958c85f317bf762f101babd16dd1cb1 (diff)
downloadmodpackman-2692a68548b91b6d3b0ff1791cd4074d6b202697.tar.gz
modpackman-2692a68548b91b6d3b0ff1791cd4074d6b202697.zip
fix config files being bad
-rw-r--r--util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.py b/util.py
index e904429..9bf6300 100644
--- a/util.py
+++ b/util.py
@@ -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()