From 43bc332b246b8a7774238e6bad4259dc1e4705ba Mon Sep 17 00:00:00 2001 From: Xeric Date: Wed, 27 Feb 2019 23:52:25 +0800 Subject: [PATCH] fix path regression issue --- conf.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/conf.py b/conf.py index 3d8efb5..a642506 100644 --- a/conf.py +++ b/conf.py @@ -87,8 +87,11 @@ def prepareFolders(): homePath = os.environ['HOME'] + profile = wf.stored_data(KEY_PROFILE) or OUTLOOK_DEFAULT_PROFILE + # outlookData = homePath + '/outlook/' - outlookData = homePath + OUTLOOK_DATA_PATH + outlookData = homePath + OUTLOOK_DATA_PARENT + profile + OUTLOOK_DATA_FOLDER + log.info(outlookData) con = sqlite3.connect(outlookData + 'Outlook.sqlite') count = 0