mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-20 04:58:32 +02:00
Update datecount format
This commit is contained in:
parent
65e48c3c47
commit
37fc6c7465
1 changed files with 1 additions and 1 deletions
|
@ -23,5 +23,5 @@ class DatecountExporter(TextExporter):
|
|||
date_counts = get_date_counts(journal)
|
||||
if not date_counts:
|
||||
return "[No dates found in journal.]"
|
||||
result = "\n".join(f"{date} {count}" for date, count in date_counts.items())
|
||||
result = "\n".join(f"{date}, {count}" for date, count in date_counts.items())
|
||||
return result
|
||||
|
|
Loading…
Add table
Reference in a new issue