summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/nntplib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/nntplib.py b/Lib/nntplib.py
index fb08b0c..fafef57 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