Minor fixes to the adverbations
Signed-off-by: merspieler <merspieler@users.noreply.github.com>
This commit is contained in:
parent
6c94f2a205
commit
67c7c4c7a6
1 changed files with 6 additions and 4 deletions
|
@ -241,6 +241,8 @@ class FlightGearCopilotSkill(MycroftSkill):
|
|||
checklist_title = checklist_title.replace('/', '|')
|
||||
checklist_title = "^" + checklist_title
|
||||
match = re.search(checklist_title, cl_request, re.I)
|
||||
checklist_title = checklist_title[1:]
|
||||
checklist_title = checklist_title.replace('|', ', ')
|
||||
|
||||
if match != None:
|
||||
self.speak(checklist_title + " checklist")
|
||||
|
|
Loading…
Reference in a new issue