diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/exchange.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/exchange.py b/python/exchange.py index 86840640..7b21787f 100644 --- a/python/exchange.py +++ b/python/exchange.py @@ -12,7 +12,7 @@ import json def get_account(email_address): - with open(Path(".credentials") / (email_address + ".json")) as fh: + with open(Path.home() / ".credentials" / (email_address + ".json")) as fh: creds = json.load(fh) credentials = Credentials(**creds) config = Configuration(server="autodiscover.lmcg.com", credentials=credentials) |
