Commit 1839e3ec authored by Collin Winter's avatar Collin Winter

Fix test_poplib failures.

parent 6f96c6b0
...@@ -123,7 +123,7 @@ class POP3: ...@@ -123,7 +123,7 @@ class POP3:
resp, o = self._getline() resp, o = self._getline()
if self._debugging > 1: print('*resp*', repr(resp)) if self._debugging > 1: print('*resp*', repr(resp))
c = resp[:1] c = resp[:1]
if c != '+': if c != b'+':
raise error_proto(resp) raise error_proto(resp)
return resp return resp
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment