We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35c74dd commit f342cf0Copy full SHA for f342cf0
timesheet_helper.py
@@ -66,7 +66,7 @@ def duration(match):
66
if re.search(pattern, line):
67
task = re.sub(pattern + ',?', '', line).strip()
68
task = re.sub(r'^\s*o\s*', '• ', task)
69
- task += f" {total_duration_hours}"
+ task += f" {total_duration_hours}\n" # Add a newline character here
70
day_tasks.append(task)
71
72
if day_tasks:
0 commit comments