fixed #84 Import bug

pull/85/merge
Peter 'Pita' Martischka 2011-08-16 13:40:01 +01:00
parent e24b8ac93a
commit da7ddfb5d7
1 changed files with 3 additions and 3 deletions

View File

@ -74,9 +74,6 @@ if(os.type().indexOf("Windows") > -1)
//thats much faster, about factor 10
else
{
//Queue with the converts we have to do
var queue = async.queue(doConvertTask, 1);
//spawn the abiword process
var abiword = spawn(settings.abiword, ["--plugin", "AbiCommand"]);
@ -137,6 +134,9 @@ 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});