Kaydet (Commit) f86f285b authored tarafından Collin Winter's avatar Collin Winter

Fix test_poplib failures.

üst 33e7a8e8
......@@ -123,7 +123,7 @@ class POP3:
resp, o = self._getline()
if self._debugging > 1: print('*resp*', repr(resp))
c = resp[:1]
if c != '+':
if c != b'+':
raise error_proto(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