Skip to content

Commit

Permalink
lowercase device id output during setup
Browse files Browse the repository at this point in the history
Fixes #208
  • Loading branch information
brycekahle committed Feb 9, 2016
1 parent 34b53cc commit 74fb345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/WirelessCommand/index.js
Expand Up @@ -736,7 +736,7 @@ WirelessCommand.prototype.__configure = function __configure(ssid, cb) {

if (dat && dat.id) {
self.__deviceID = dat.id;
console.log(arrow, 'Setting up device id', chalk.bold.cyan(dat.id));
console.log(arrow, 'Setting up device id', chalk.bold.cyan(dat.id.toLowerCase()));
}
clearTimeout(retry);
console.log(arrow, 'Requesting public key from the device...');
Expand Down

0 comments on commit 74fb345

Please sign in to comment.