Browse Source

fix an broken question.

Fixes #1274.
v0.7.4-release
Yoshihiro Kikuchi 13 years ago
committed by koichik
parent
commit
82cfdb88fa
  1. 2
      lib/_debugger.js

2
lib/_debugger.js

@ -998,7 +998,7 @@ Interface.prototype.yesNoQuestion = function(prompt, cb) {
cb(false);
} else {
console.log('Please answer y or n.');
self.restartQuestion(cb);
self.yesNoQuestion(prompt, cb);
}
});
};

Loading…
Cancel
Save