Fix test_poplib failures.

This commit is contained in:
Collin Winter 2007-07-23 00:24:10 +00:00
parent 33e7a8e813
commit f86f285bdd
1 changed files with 1 additions and 1 deletions

View File

@ -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