Forgot to remove self. reference when copying some code.
This commit is contained in:
parent
fd3c29f486
commit
f794cad7bb
|
|
@ -7,7 +7,9 @@ log_root = os.path.join(os.path.expanduser('~/'), '.cache/archinstall')
|
|||
if not os.path.isdir(log_root):
|
||||
os.makedirs(log_root)
|
||||
|
||||
archinstall.storage['logfile'] = f"{log_root}/install-session_{self.init_time}.{self.milliseconds}.log"
|
||||
init_time = time.strftime('%Y-%m-%d %H:%M:%S')
|
||||
milliseconds = int(str(time.time()).split('.')[1])
|
||||
archinstall.storage['logfile'] = f"{log_root}/install-session_{init_time}.{milliseconds}.log"
|
||||
|
||||
"""
|
||||
This signal-handler chain (and global variable)
|
||||
|
|
|
|||
Loading…
Reference in New Issue