Skip to content
Snippets Groups Projects
Commit 4d102fdc authored by Frisinghelli Daniel's avatar Frisinghelli Daniel
Browse files

Fixed typos

parent cd7fd1e5
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ def log_conf(logfile):
# check if the parent directory of the log file exists
logfile = pathlib.Path(logfile)
if not logfile.parent.is_dir():
logfile.parents.mkdir(parent=True, exist_ok=True)
logfile.parent.mkdir(parents=True, exist_ok=True)
LOGGING_CONFIG = {
'version': 1,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment