Force non-date values to 'not a time' that still let's column be datetime

This commit is contained in:
benjamin melançon 2021-05-28 14:24:07 -04:00
parent d952f11350
commit df64927f5a
2 changed files with 6 additions and 3 deletions

View file

@ -14,8 +14,11 @@ def write():
if not os.path.isfile('settings.ini'):
# Set some essential initial values.
pomodoro['logfile'] = '~/Projects/agaric/python/pomodoroprompt/log/timelog.csv'
# This path must be absolute, for some reason using ~ for home isn t wor::
# pomodoro['logfile'] = '~/Projects/agaric/python/pomodoroprompt/log/timelog.csv'
pomodoro['logfile'] = ''
# This path must be absolute, for some reason using ~ for home isn't working:
pomodoro['logpath'] = '/home/mlncn/Projects/agaric/python/pomodoroprompt/log/'
write()