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

Fixed typo.

parent f0e3a7f1
No related branches found
No related tags found
No related merge requests found
......@@ -100,7 +100,7 @@ if __name__ == '__main__':
args.scenario)
# check if output path exists
if not output_path.exist():
if not output_path.exists():
LOGGER.info('mkdir {}'.format(output_path))
output_path.mkdir(parents=True, exist_ok=True)
......@@ -120,7 +120,7 @@ if __name__ == '__main__':
parts['Variable']).joinpath(parts['Scenario'])
# check if output path exists
if not output_path.exist():
if not output_path.exists():
LOGGER.info('mkdir {}'.format(output_path))
output_path.mkdir(parents=True, exist_ok=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment