adds missing semicolons in src/node/handler folder

This commit is contained in:
disy-mk 2013-03-24 01:33:28 +01:00
parent 35e4891217
commit a79782a36d
4 changed files with 30 additions and 30 deletions

View file

@ -117,7 +117,7 @@ exports.doExport = function(req, res, padId, type)
], function(err)
{
if(err && err != "stop") ERR(err);
})
});
}
else if(type == 'dokuwiki')
{
@ -214,6 +214,6 @@ exports.doExport = function(req, res, padId, type)
], function(err)
{
if(err && err != "stop") ERR(err);
})
});
}
};