index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-01-24 23:31:41 +0100 |
---|---|---|
committer | Anton Hvornum <anton@hvornum.se> | 2021-01-24 23:31:41 +0100 |
commit | ca2408a3d290a37d0b955ea3368f7eabb73d20a3 (patch) | |
tree | 4c7f1052066a19ee6d6706a1e57c38b854fbcc1b | |
parent | 828a09b9c8750dfb582ccd12d79fa7faa4512415 (diff) |
-rw-r--r-- | archinstall/lib/output.py | 6 |
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. |