From 72b39bc00c0a20a45621a89de748483fba2735c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Mon, 25 Nov 2024 22:56:38 -0500 Subject: [PATCH] Update settings to now-working relative path :shrug: --- settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.py b/settings.py index f6f24e2..c51fcd6 100644 --- a/settings.py +++ b/settings.py @@ -23,7 +23,7 @@ if not os.path.isfile('settings.ini'): pomodoro['logfile'] = '' # This path must be absolute, for some reason using ~ for home isn't working: - pomodoro['logpath'] = '/home/mlncn/Projects/python/pomodoroprompt/log/' + pomodoro['logpath'] = '~/Projects/python/pomodoroprompt/log/' write() config.read('settings.ini')