diff options
-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) |