Skip to content

Commit 5426bc7

Browse files
authored
Merge pull request #17 from biosimulators/fix-error-message
Fix error message
2 parents 4a6e2ad + ad77184 commit 5426bc7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

biosimulators_tellurium/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.38'
1+
__version__ = '0.1.39'

biosimulators_tellurium/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def exec_sed_task(task, variables, preprocessed_task=None, log=None, config=None
279279
if config.VALIDATE_RESULTS and numpy.any(numpy.isnan(results)):
280280
msg = 'Simulation failed with algorithm `{}` ({})'.format(
281281
preprocessed_task.algorithm_kisao_ids[task.id],
282-
KISAO_ALGORITHM_MAP[preprocessed_task.algorithm_kisao_id[task.id]]['id'])
282+
KISAO_ALGORITHM_MAP[preprocessed_task.algorithm_kisao_ids[task.id]]['id'])
283283
for i_param in range(preprocessed_task.solvers[task.id].getNumParams()):
284284
param_name = preprocessed_task.solvers[task.id].getParamName(i_param)
285285
msg += '\n - {}: {}'.format(param_name, getattr(preprocessed_task.solvers[task.id], param_name))

0 commit comments

Comments
 (0)