index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Dylan M. Taylor <dylan@dylanmtaylor.com> | 2021-05-27 22:50:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-27 22:50:38 -0400 |
commit | 04e58f98fac6a3834d3ce60f3a13f0bb980b165e (patch) | |
tree | ffac999f44cefe439ea546ea555a4e139c7e7551 /examples | |
parent | eb8f45952531394875e5911b89ae013fe61f9171 (diff) |
-rw-r--r-- | examples/guided.py | 2 |
diff --git a/examples/guided.py b/examples/guided.py index bad9b625..320bcfd8 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -260,7 +260,7 @@ def perform_installation_steps(): archinstall.log("-- Guided template chosen (with below config) --", level=logging.DEBUG) user_configuration = json.dumps(archinstall.arguments, indent=4, sort_keys=True, cls=archinstall.JSON) archinstall.log(user_configuration, level=logging.INFO) - with open("/var/log/archinstall/user_configuration.json") as config_file: + with open("/var/log/archinstall/user_configuration.json", "w") as config_file: config_file.write(user_configuration) print() |