Print rendering errors with trimming of spaces

This commit is contained in:
Mohammad Fares 2018-11-04 18:15:19 +02:00
parent 269146fb60
commit b5f2dfb05c

View File

@ -122,7 +122,7 @@ function renderFrames(records, options) {
render.stderr.on('data', function(error) {
render.kill();
reject(new Error(di._.trim(error)));
reject(new Error(error));
});
render.stdout.on('data', function(data) {