From 8c9780a0c4e33590dc9aebd6e5f94d8812ddb99c Mon Sep 17 00:00:00 2001 From: Jacek Radzikowski Date: Fri, 28 Jun 2024 01:41:08 -0400 Subject: [PATCH] Fixed confusing date format --- db_operations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db_operations.py b/db_operations.py index 0d8aaa3..b1440e8 100644 --- a/db_operations.py +++ b/db_operations.py @@ -66,7 +66,7 @@ def get_channels(): def add_bulletin(board, sender_short_name, subject, content, bbs_nodes, interface, unique_id=None): conn = get_db_connection() c = conn.cursor() - date = datetime.now().strftime('%m/%d/%Y %H:%M') + date = datetime.now().strftime('%Y-%m-%d %H:%M') if not unique_id: unique_id = str(uuid.uuid4()) c.execute( @@ -107,7 +107,7 @@ def delete_bulletin(bulletin_id, bbs_nodes, interface): def add_mail(sender_id, sender_short_name, recipient_id, subject, content, bbs_nodes, interface, unique_id=None): conn = get_db_connection() c = conn.cursor() - date = datetime.now().strftime('%m/%d/%Y %H:%M') + date = datetime.now().strftime('%Y-%m-%d %H:%M') if not unique_id: unique_id = str(uuid.uuid4()) c.execute("INSERT INTO mail (sender, sender_short_name, recipient, date, subject, content, unique_id) VALUES (?, ?, ?, ?, ?, ?, ?)",