Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f86f285

Browse files
committed
Fix test_poplib failures.
1 parent 33e7a8e commit f86f285

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/poplib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def _getresp(self):
123123
resp, o = self._getline()
124124
if self._debugging > 1: print('*resp*', repr(resp))
125125
c = resp[:1]
126-
if c != '+':
126+
if c != b'+':
127127
raise error_proto(resp)
128128
return resp
129129

0 commit comments

Comments
 (0)