Fix the error message while deleting session.log

This commit is contained in:
luukas 2022-06-14 00:30:28 +03:00
parent 0d664cfae5
commit 73a6d1cd78
No known key found for this signature in database
GPG Key ID: CC4915E8D71FC044

View File

@ -495,7 +495,7 @@ class Helpers:
with contextlib.suppress(FileNotFoundError):
os.remove(session_log_file)
except Exception as e:
Console.error(f"Deleting Session.lock failed with error: {e}")
Console.error(f"Deleting logs/session.log failed with error: {e}")
@staticmethod
def get_time_as_string():