From e007b1c22a6e1a15184a2d7a67e765126d9f40f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa=20Aubert?= Date: Fri, 28 Oct 2016 17:09:31 +0200 Subject: [PATCH] Fix jshint typo --- batch/batch.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/batch/batch.js b/batch/batch.js index 056443a5..3906fb4f 100644 --- a/batch/batch.js +++ b/batch/batch.js @@ -71,7 +71,9 @@ Batch.prototype.processJob = function (user, callback) { self.jobRunner.run(jobId, function (err, job) { self.clearWorkInProgressJob(user, jobId, function (clearError) { if (clearError) { - return callback(new Error('Could not clear job from work-in-progress list. Reason: ' + err.message)); + return callback( + new Error('Could not clear job from work-in-progress list. Reason: ' + err.message) + ); } if (err) {