summaryrefslogtreecommitdiff
path: root/src/node/utils/Abiword.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/node/utils/Abiword.js')
-rw-r--r--src/node/utils/Abiword.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/utils/Abiword.js b/src/node/utils/Abiword.js
index 2ef4f444..5f12bd97 100644
--- a/src/node/utils/Abiword.js
+++ b/src/node/utils/Abiword.js
@@ -143,7 +143,7 @@ else
//Queue with the converts we have to do
var queue = async.queue(doConvertTask, 1);
exports.convertFile = function(srcFile, destFile, type, callback)
- {
+ {
queue.push({"srcFile": srcFile, "destFile": destFile, "type": type, "callback": callback});
};
}