Allow multiline Assertion Errors for python

This commit is contained in:
Sebastian Serth
2020-03-21 18:34:36 +01:00
parent 2fc9153e81
commit 64e6d01b9b
2 changed files with 3 additions and 2 deletions

View File

@ -440,7 +440,7 @@ configureEditors: function () {
let errorMessagesToShow = [];
result.error_messages.forEach(function (item) {
if (item) {
errorMessagesToShow.push(item)
errorMessagesToShow.push(item.replace(/\n/g, '<br>'))
}
})