Skip to content
Snippets Groups Projects
Commit 2655e6ba authored by philip.roeggla's avatar philip.roeggla
Browse files

yaaawn. another silly mistake. w was in joinpath not open

parent 6986020f
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,8 @@ async def extract(input_file: str, output_folder: str) -> typing.NoReturn:
# to do unblock
with open(
output_log.joinpath(
'sub-log-' + name + datetime.datetime.now().strftime("-%Y-%m-%d-%H:%M:%S") + '.json', 'w')
'sub-log-' + name + datetime.datetime.now().strftime("-%Y-%m-%d-%H:%M:%S") + '.json'
), 'w'
) as file:
json.dump(converter.sub_log, file)
......
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