diff --git a/routes/index.js b/routes/index.js index b3c48d9..87e6f9c 100644 --- a/routes/index.js +++ b/routes/index.js @@ -72,9 +72,9 @@ router.get('/info/:name', function(req, res, next){ }); router.get('/list', function(req, res, next) { - lxc.list(function(data){ - res.json(data); - }); + lxc.list(function(data){ + res.json(data); + }); }); module.exports = router;