indentation

This commit is contained in:
John McLear 2014-11-12 21:39:03 +00:00
parent fc5152c2f3
commit e5d77c3763
1 changed files with 3 additions and 3 deletions

View File

@ -67,9 +67,9 @@ exports.getAvailablePlugins = function(maxCacheAge, cb) {
return cb && cb(null, exports.availablePlugins)
}
plugins = JSON.parse(plugins);
exports.availablePlugins = plugins;
cacheTimestamp = Math.round(+new Date/1000);
cb && cb(null, plugins)
exports.availablePlugins = plugins;
cacheTimestamp = Math.round(+new Date/1000);
cb && cb(null, plugins)
});
};