Formatting change

This commit is contained in:
HaveAGitGat 2019-12-03 16:39:49 +00:00
parent 0b1f06120b
commit 372f374079
6 changed files with 23 additions and 23 deletions

View file

@ -9,7 +9,7 @@ function remuxContainer(file, container) {
var response = {
processFile: true,
note:`File is not in ${container} \\n`
note:`File is not in ${container} \n`
}
return response
@ -17,7 +17,7 @@ function remuxContainer(file, container) {
var response = {
processFile: false,
note:`File is already in ${container} \\n`
note:`File is already in ${container} \n`
}
return response
@ -28,7 +28,7 @@ function remuxContainer(file, container) {
} catch (err) {
var response = {
processFile: false,
note:`library.actions.remuxContainer error: ${err} \\n`
note:`library.actions.remuxContainer error: ${err} \n`
}
return response
}