Fix typos

This commit is contained in:
XANTRONIX Development 2024-11-30 19:09:25 -05:00
parent 016b33b666
commit 8707f9292f

View file

@ -318,7 +318,7 @@ class Session():
newsgroup_message, newsgroup_message,
message message
where where
message.id = newsgroup_message.id message.id = newsgroup_message.message_id
and newsgroup_message.newsgroup_id = ? and newsgroup_message.newsgroup_id = ?
""" """
@ -550,7 +550,7 @@ class Session():
newsgroup_message, newsgroup_message,
message message
where where
message.id = newsgroup_message.id message.id = newsgroup_message.message_id
and newsgroup_message.newsgroup_id = ? and newsgroup_message.newsgroup_id = ?
""" """
@ -742,7 +742,7 @@ class Session():
def _cmd_post(self): def _cmd_post(self):
if not self.perms & UserPermission.POST: if not self.perms & UserPermission.POST:
self.respond(ResponseCode.NNTP_POST_PROHIBITED self.respond(ResponseCode.NNTP_POST_PROHIBITED)
self.respond(ResponseCode.NNTP_INQUIRY_ARTICLE) self.respond(ResponseCode.NNTP_INQUIRY_ARTICLE)
@ -769,7 +769,7 @@ class Session():
def _cmd_ihave(self, message_id): def _cmd_ihave(self, message_id):
if not self.perms & UserPermission.POST: if not self.perms & UserPermission.POST:
self.respond(ResponseCode.NNTP_POST_PROHIBITED self.respond(ResponseCode.NNTP_POST_PROHIBITED)
sql = """ sql = """
select select