summaryrefslogtreecommitdiffstats
path: root/Lib/nntplib.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-01-16 07:12:46 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-01-16 07:12:46 (GMT)
commitdfb673b45730635a386ceb3e2405bf2809a2e40c (patch)
tree58bee15b1103ebe538636d1c2a81a3ea896bcc10 /Lib/nntplib.py
parent8a7d2d5cb1f9fea6a9a044c130567b410282942a (diff)
downloadcpython-dfb673b45730635a386ceb3e2405bf2809a2e40c.zip
cpython-dfb673b45730635a386ceb3e2405bf2809a2e40c.tar.gz
cpython-dfb673b45730635a386ceb3e2405bf2809a2e40c.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/nntplib.py')
-rw-r--r--Lib/nntplib.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/nntplib.py b/Lib/nntplib.py
index 1a2254c..a8aba48 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__()).