From f6dadbfab0067f7aa78f811d71f2c85c5b1f06b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Wed, 26 May 2021 12:48:24 -0400 Subject: [PATCH] Update glob to reflect directory path should have a slash already --- pomodoro_to_harvest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pomodoro_to_harvest.py b/pomodoro_to_harvest.py index 34bd1ed..eef4e13 100644 --- a/pomodoro_to_harvest.py +++ b/pomodoro_to_harvest.py @@ -11,7 +11,7 @@ import settings # For multiple files: path = settings.pomodoro_logpath() -all_files = glob.glob(path + "/*.csv") +all_files = glob.glob(path + "*.csv") li = []