Merge pull request #4 from MycroftAI/bugfix/issue-3

Fix spacing.
This commit is contained in:
Åke 2017-07-02 22:42:55 +02:00 committed by GitHub
commit ee7dd2bb03
1 changed files with 3 additions and 3 deletions

View File

@ -74,7 +74,7 @@ class DesktopLauncherSkill(MycroftSkill):
"LaunchDesktopApplicationIntent").require("LaunchKeyword").require(
"Application").build()
self.register_intent(launch_intent, self.handle_launch_desktop_app)
close_intent = IntentBuilder(
"CloseDesktopApplicationIntent").require("CloseKeyword").require(
"Application").build()
@ -95,10 +95,10 @@ class DesktopLauncherSkill(MycroftSkill):
apps = self.appmap.get(app_name)
if apps and len(apps) > 0:
apps[0].launch()
def handle_close_desktop_app(self, message):
app_name = message.data.get('Application')
subprocess.call( [ "killall", "-9", app_name ] )
subprocess.call( [ "killall", "-9", app_name ] )
def handle_launch_website(self, message):
site = message.data.get("Website")