Skip to content

Commit

Permalink
[fix] Add missing !
Browse files Browse the repository at this point in the history
  • Loading branch information
indexzero committed Feb 6, 2013
1 parent cf4d2ae commit bfdd5bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node.js/lib/client/client.js
Expand Up @@ -110,7 +110,7 @@ Client.prototype.cloud = function (options, api, callback) {
}, {});

if (!self.datacenters || !self.datacenters[cloud.provider]
|| self.datacenters[cloud.provider][cloud.datacenter]) {
|| !self.datacenters[cloud.provider][cloud.datacenter]) {
return done(new Error('Unknown cloud: ' + cloud.provider + ' ' + cloud.datacenter));
}

Expand Down

0 comments on commit bfdd5bf

Please sign in to comment.