Skip to content
Snippets Groups Projects
Commit b4568c9f authored by Federica Filippini's avatar Federica Filippini
Browse files

fixed typo

parent e2e9ed05
Branches main
No related tags found
No related merge requests found
......@@ -53,13 +53,13 @@ class Logger:
if type(d["out_stream"]) == "_io.TextIOWrapper":
l = [d["out_stream"].name, d["out_stream"].mode]
else:
l = [d["out_tream"].name]
l = [d["out_stream"].name]
d["out_stream"] = l
if "err_stream" in d:
if type(d["err_stream"]) == "_io.TextIOWrapper":
l = [d["err_stream"].name, d["out_stream"].mode]
else:
l = [d["err_tream"].name]
l = [d["err_stream"].name]
d["err_stream"] = l
return d
......
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