Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
sedrubal
Masterarbeit
evaluation_tools
Commits
65113798
Verified
Commit
65113798
authored
Sep 28, 2021
by
Sebastian Endres
Browse files
Better handling of ParsingErrors in plot result
parent
733689b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
plot_all.py
View file @
65113798
...
...
@@ -257,9 +257,13 @@ class PlotAllCli:
cprint
(
f
"⨯
{
err
}
"
,
file
=
sys
.
stderr
,
color
=
"red"
)
with
err_output_file
.
open
(
"w"
)
as
file
:
print
(
err
,
file
=
file
)
print
(
f
"
{
err
.
trace
.
input_file
.
relative_to
(
self
.
_current_log_dir
)
}
:"
,
err
.
msg
,
file
=
file
,
)
rets
.
append
(
str
(
err
)
)
rets
.
append
(
err
.
msg
)
continue
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment