Skip to content

Commit

Permalink
fix path regression issue
Browse files Browse the repository at this point in the history
  • Loading branch information
xeric committed Feb 27, 2019
1 parent 7341975 commit 43bc332
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 43bc332

Please sign in to comment.