From be9f212f7e70c650e3717f2bbe55bdc22b9c8e9c Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 10 Jan 1995 10:35:55 +0000 Subject: [PATCH] fix comments for list command --- Lib/nntplib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/nntplib.py b/Lib/nntplib.py index fb08b0cde05..fafef57d7cb 100644 --- a/Lib/nntplib.py +++ b/Lib/nntplib.py @@ -170,12 +170,12 @@ class NNTP: # Process a LIST command. Return: # - resp: server response if succesful - # - list: list of (group, first, last, flag) (strings) + # - list: list of (group, last, first, flag) (strings) def list(self): resp, list = self.longcmd('LIST') for i in range(len(list)): - # Parse lines into "group first last flag" + # Parse lines into "group last first flag" list[i] = string.split(list[i]) return resp, list