Issues 401 - Saying zero instead of oh

pull/458/head
Augusto Monteiro 2017-01-02 18:44:05 -03:00
parent 451f0f5195
commit 63326a93c5
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class PairingSkill(MycroftSkill):
return device is not None
def speak_code(self):
data = {"code": '. '.join(self.data.get("code"))}
data = {"code": '. '.join(self.data.get("code")).replace("0", "zero")}
self.speak_dialog("pairing.code", data)
def stop(self):