From ca2408a3d290a37d0b955ea3368f7eabb73d20a3 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Sun, 24 Jan 2021 23:31:41 +0100 Subject: Mixup with variable name --- archinstall/lib/output.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'archinstall') diff --git a/archinstall/lib/output.py b/archinstall/lib/output.py index 52b2ce2c..baa454ec 100644 --- a/archinstall/lib/output.py +++ b/archinstall/lib/output.py @@ -90,14 +90,14 @@ def log(*args, **kwargs): # If a logfile is defined in storage, # we use that one to output everything - if (logfile := storage.get('LOG_FILE', None)): - absolute_logfile = os.path.join(storage.get('LOG_PATH', './'), logfile) + if (filename := storage.get('LOG_FILE', None)): + absolute_logfile = os.path.join(storage.get('LOG_PATH', './'), filename) if not os.path.isfile(absolute_logfile): os.makedirs(os.path.dirname(absolute_logfile)) Path(absolute_logfile).touch() # Overkill? with open(absolute_logfile, 'a') as log_file: - logfile.write(f"{orig_string}\n") + log_file.write(f"{orig_string}\n") # If we assigned a level, try to log it to systemd's journald. # Unless the level is higher than we've decided to output interactively. -- cgit v1.2.3-54-g00ecf