summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorxengineering <mail2xengineering@protonmail.com>2019-10-13 14:07:45 +0200
committerxengineering <mail2xengineering@protonmail.com>2019-10-13 14:07:45 +0200
commit5119563581a64cebaf8011380b6706ee7eb822b3 (patch)
tree47c7a90a473e267ac6262ef549494a0e35915c6b /bin
parent333fe6d93c139c5106b52dc58c6b4a8e967c4142 (diff)
downloadarchinstall-5119563581a64cebaf8011380b6706ee7eb822b3.tar
archinstall-5119563581a64cebaf8011380b6706ee7eb822b3.tar.zst
archinstall-5119563581a64cebaf8011380b6706ee7eb822b3.zip
Another bugfix for config_writer.py.
Diffstat (limited to 'bin')
-rw-r--r--bin/config_writer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/config_writer.py b/bin/config_writer.py
index 2be6b14..b0963eb 100644
--- a/bin/config_writer.py
+++ b/bin/config_writer.py
@@ -31,7 +31,7 @@ log_file_path = sys.argv[1]
def output(text):
print(text)
- with open(log_file_path, a) as f:
+ with open(log_file_path, 'a') as f:
f.write(text)