From dfb673b45730635a386ceb3e2405bf2809a2e40c Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Tue, 16 Jan 2001 07:12:46 +0000 Subject: [PATCH] Whitespace normalization. --- Lib/nntplib.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/nntplib.py b/Lib/nntplib.py index 1a2254c1d2a..a8aba4838ab 100644 --- a/Lib/nntplib.py +++ b/Lib/nntplib.py @@ -112,9 +112,9 @@ class NNTP: self.file = self.sock.makefile('rb') self.debugging = 0 self.welcome = self.getresp() - + # 'mode reader' is sometimes necessary to enable 'reader' mode. - # However, the order in which 'mode reader' and 'authinfo' need to + # However, the order in which 'mode reader' and 'authinfo' need to # arrive differs between some NNTP servers. Try to send # 'mode reader', and if it fails with an authorization failed # error, try again after sending authinfo. @@ -147,7 +147,7 @@ class NNTP: except NNTPPermanentError: # error 500, probably 'not implemented' pass - + # Get the welcome message from the server # (this is read and squirreled away by __init__()).