From 180444e67172baabaed9bfd7c35c75da2ba24e2d Mon Sep 17 00:00:00 2001
From: merspieler <merspieler@airmail.cc>
Date: Tue, 11 Sep 2018 18:56:30 +0200
Subject: [PATCH] Make mycroft spell OK correctly

Signed-off-by: merspieler <merspieler@airmail.cc>
---
 __init__.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/__init__.py b/__init__.py
index 1946012..d02c4dd 100644
--- a/__init__.py
+++ b/__init__.py
@@ -477,7 +477,7 @@ class FlightGearCopilotSkill(MycroftSkill):
 
 	@intent_handler(IntentBuilder('FindFlightGearIntent').require('conf.find.fg'))
 	def handle_find_flight_gear_intent(self, message):
-		self.speak("Ok, I'm looking for a running flightgear on port " + str(self.settings['port']) + ". This can take a while.")
+		self.speak("Okay, I'm looking for a running flightgear on port " + str(self.settings['port']) + ". This can take a while.")
 
 		# check localhost first
 		ip = "127.0.0.1"
@@ -495,7 +495,7 @@ class FlightGearCopilotSkill(MycroftSkill):
 						self.speak("New host " + self.settings['host'] + " is set")
 						sys.exit()
 
-				self.speak("Ok, I continue to search")
+				self.speak("Okay, I continue to search")
 			sock.close()
 
 		except socket.error:
@@ -528,7 +528,7 @@ class FlightGearCopilotSkill(MycroftSkill):
 							self.speak("New host " + self.settings['host'] + " is set")
 							sys.exit()
 
-					self.speak("Ok, I continue to search")
+					self.speak("Okay, I continue to search")
 				sock.close()
 
 			except socket.error: