This commit is contained in:
Dave Eddy 2015-08-26 20:08:52 -04:00
parent 0ccda0af10
commit 5b60fffc04
1 changed files with 1 additions and 1 deletions

View File

@ -405,7 +405,7 @@ CloudAPI.prototype.getMachine = function getMachine(id, cb) {
var endpoint = sprintf('/%s/machines/%s', this.user, id);
this._request(endpoint, function (err, req, res, body) {
callback(err, body, res);
cb(err, body, res);
});
};