From 63e61f7498de0e288682cf1a020fd3cd566045a4 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Sat, 4 Jan 2025 17:18:52 -0500 Subject: [PATCH] Don't attempt to double-convert datetime objects --- lib/xenu_nntp/session.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xenu_nntp/session.py b/lib/xenu_nntp/session.py index 1fc2322..d1107ab 100644 --- a/lib/xenu_nntp/session.py +++ b/lib/xenu_nntp/session.py @@ -327,7 +327,7 @@ class Session(Connection): if row is None: return - return datetime.datetime.fromisoformat(row[0]) + return row[0] def _cmd_list_active(self): now = datetime.datetime.now(datetime.UTC)