Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
beat
beat.core
Commits
3090adeb
Commit
3090adeb
authored
Jun 30, 2017
by
Philip ABBET
Browse files
More detailed error message when the toolchain used by an experiment is invalid
parent
7c3b36f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
beat/core/experiment.py
View file @
3090adeb
...
...
@@ -439,8 +439,8 @@ class Experiment(object):
if
self
.
toolchain
.
errors
:
if
self
.
storage
is
not
None
:
self
.
errors
.
append
(
"toolchain `%s' is not valid"
%
\
self
.
storage
.
toolchain
)
self
.
errors
.
append
(
"toolchain `%s' is not valid
, because:
\n
* %s
"
%
\
(
self
.
storage
.
toolchain
,
'
\n
* '
.
join
(
self
.
toolchain
.
errors
))
)
else
:
self
.
errors
.
append
(
"toolchain data is not valid, because:
\n
* %s"
\
%
'
\n
* '
.
join
(
self
.
toolchain
.
errors
))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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