From 4eecca8630891fd95986d5bb6fc57423e8cf7414 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Mon, 25 Nov 2024 21:52:27 -0500 Subject: [PATCH] Fix typo --- lib/nntp/tiny/session.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nntp/tiny/session.py b/lib/nntp/tiny/session.py index 996a471..7c4d3f6 100644 --- a/lib/nntp/tiny/session.py +++ b/lib/nntp/tiny/session.py @@ -218,7 +218,7 @@ class Session(): if len(args) > 1: msgrange = MessageRange.parse(args[1]) - sql += " and " + msgrange.clause() + sql += " and " + msgrange.where() summary = self._newsgroup_summary(newsgroup) cr = self.db.execute(sql, (newsgroup.id))