Update glob to reflect directory path should have a slash already

This commit is contained in:
benjamin melançon 2021-05-26 12:48:24 -04:00
parent 345335368a
commit f6dadbfab0

View file

@ -11,7 +11,7 @@ import settings
# For multiple files: # For multiple files:
path = settings.pomodoro_logpath() path = settings.pomodoro_logpath()
all_files = glob.glob(path + "/*.csv") all_files = glob.glob(path + "*.csv")
li = [] li = []