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 865041f..21649a0 100644 --- a/Lib/nntplib.py +++ b/Lib/nntplib.py @@ -239,7 +239,7 @@ class NNTP: if n > 1: nr = words[1] if n > 2: - id = string.lower(words[2]) + id = words[2] return resp, nr, id # Internal: process a STAT, NEXT or LAST command |