diff options
-rw-r--r-- | Lib/nntplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/nntplib.py b/Lib/nntplib.py index b6b3957..7fe4971 100644 --- a/Lib/nntplib.py +++ b/Lib/nntplib.py @@ -180,7 +180,7 @@ class NNTP: resp, list = self.longcmd('LIST') for i in range(len(list)): # Parse lines into "group last first flag" - list[i] = string.split(list[i]) + list[i] = tuple(string.split(list[i])) return resp, list # Process a GROUP command. Argument: |