From 5f04640dffa6112829ba6cc875cf830e022a0ae3 Mon Sep 17 00:00:00 2001 From: merspieler Date: Fri, 2 Feb 2018 01:14:36 +0100 Subject: [PATCH] Fix for exit() function Signed-off-by: merspieler --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index 4c21079..a53c2e4 100644 --- a/__init__.py +++ b/__init__.py @@ -247,7 +247,7 @@ class FlightGearCopilotSkill(MycroftSkill): return tn # exit routine to properly close the tn con - def exit(tn): + def exit(self, tn): tn.close sys.exit(0)