]> granicus.if.org Git - python/commitdiff
Whitespace normalization.
authorTim Peters <tim.peters@gmail.com>
Tue, 16 Jan 2001 07:12:46 +0000 (07:12 +0000)
committerTim Peters <tim.peters@gmail.com>
Tue, 16 Jan 2001 07:12:46 +0000 (07:12 +0000)
Lib/nntplib.py

index 1a2254c1d2a6d50767d074fbff7c6a227d318e59..a8aba4838ab4650c398baeea4f6a6050bf394044 100644 (file)
@@ -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__()).