diff options
| author | xengineering <mail2xengineering@protonmail.com> | 2019-10-13 14:07:45 +0200 |
|---|---|---|
| committer | xengineering <mail2xengineering@protonmail.com> | 2019-10-13 14:07:45 +0200 |
| commit | 5119563581a64cebaf8011380b6706ee7eb822b3 (patch) | |
| tree | 47c7a90a473e267ac6262ef549494a0e35915c6b | |
| parent | 333fe6d93c139c5106b52dc58c6b4a8e967c4142 (diff) | |
| download | archinstall-5119563581a64cebaf8011380b6706ee7eb822b3.tar archinstall-5119563581a64cebaf8011380b6706ee7eb822b3.tar.zst archinstall-5119563581a64cebaf8011380b6706ee7eb822b3.zip | |
Another bugfix for config_writer.py.
| -rw-r--r-- | bin/config_writer.py | 2 |
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) |
