From 87069126bd2d3fa6afaf7ba23048716baa220f08 Mon Sep 17 00:00:00 2001 From: Maciej Krok Date: Fri, 26 May 2017 22:50:41 +0200 Subject: [PATCH] python fix for things3 --- thingspy/things.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thingspy/things.py b/thingspy/things.py index 7d85acd..feffa75 100644 --- a/thingspy/things.py +++ b/thingspy/things.py @@ -46,13 +46,13 @@ class thingspy: def addToThings(self): for project in self.projects: - applescript = "tell application \"Things\"\n" + applescript = "tell application \"Things3\"\n" applescript += project.makeAppleScript() applescript += "\nend tell \n" self.doAppleScript(applescript) for todo in self.todos: - applescript = "tell application \"Things\"\n" + applescript = "tell application \"Things3\"\n" applescript += todo.makeAppleScript() applescript += "\nend tell \n" self.doAppleScript(applescript)