Fix EOL to be dos or unix not both in same file.

This commit is contained in:
Mark Hindess
2014-07-23 22:07:02 +01:00
parent 55679694c9
commit 6c4611a934
3 changed files with 44 additions and 44 deletions

View File

@@ -75,12 +75,12 @@ module.exports = function(RED) {
} else {
fs.readFile(filename,options,function(err,data) {
if (err) {
node.warn(err);
node.warn(err);
msg.error = err;
} else {
msg.filename = filename;
msg.payload = data;
}
}
node.send(msg);
});
}