From 89a2dd9c39542340290d039d48333bbd071f083b Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Tue, 7 Jul 2020 08:47:15 +1000 Subject: [PATCH] fix cleaner linux filepath --- cleaner.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cleaner.py b/cleaner.py index 093c763..146407c 100644 --- a/cleaner.py +++ b/cleaner.py @@ -32,7 +32,8 @@ try: filepath = subprocess.run(['echo', '%localappdata%'], shell=True, capture_output=True).stdout \ .rstrip().decode('utf-8') + '\\Programs\\Notion\\resources' elif sys.platform == 'linux': - filepath = '/opt/notion-app' + filepath = '/opt/notion-app' if os.path.exists( + '/opt/notion-app') else '/opt/notion' elif sys.platform == 'darwin': filepath = '/Applications/Notion.app/Contents/Resources' else: