summaryrefslogtreecommitdiffstats
path: root/Lib/nntplib.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/nntplib.py')
-rw-r--r--Lib/nntplib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/nntplib.py b/Lib/nntplib.py
index eafc9eb..b6b3957 100644
--- a/Lib/nntplib.py
+++ b/Lib/nntplib.py
@@ -68,7 +68,7 @@ class NNTP:
self.port = port
self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.sock.connect(self.host, self.port)
- self.file = self.sock.makefile('r')
+ self.file = self.sock.makefile('rb')
self.debugging = 0
self.welcome = self.getresp()