From 37fc6c7465d39ab449f00370c2989d8bb38a6d18 Mon Sep 17 00:00:00 2001 From: karimpwnz Date: Mon, 4 Jan 2021 02:52:55 +0200 Subject: [PATCH] Update datecount format --- jrnl/plugins/datecount_exporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jrnl/plugins/datecount_exporter.py b/jrnl/plugins/datecount_exporter.py index c21df260..a420918a 100644 --- a/jrnl/plugins/datecount_exporter.py +++ b/jrnl/plugins/datecount_exporter.py @@ -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