Fix typos

This commit is contained in:
Girish Ramakrishnan
2016-10-07 14:19:44 -07:00
parent c385abe416
commit 72f287c4e5
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ function getIp(callback) {
try {
var ip = os.networkInterfaces().eth0[0].address;
return callback(null, ip);
} catch (e)
} catch (e) {
return callback(new SysInfoError(SysInfoError.INTERNAL_ERROR, e));
}
}