Patch # 1094 by Serge Julien. Fix some bytes/str comparisons.
(Bah, the poplib test didn't catch this.)
This commit is contained in:
parent
19ab2bd1c7
commit
0ec3477989
|
@ -134,8 +134,8 @@ class POP3:
|
|||
resp = self._getresp()
|
||||
list = []; octets = 0
|
||||
line, o = self._getline()
|
||||
while line != '.':
|
||||
if line[:2] == '..':
|
||||
while line != b'.':
|
||||
if line[:2] == b'..':
|
||||
o = o-1
|
||||
line = line[1:]
|
||||
octets = octets + o
|
||||
|
|
Loading…
Reference in New Issue