mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
add missing loop step to parseplist()
This commit is contained in:
parent
f7476c5088
commit
eacce12fdc
1 changed files with 1 additions and 0 deletions
|
@ -54,6 +54,7 @@ class Message(rfc822.Message):
|
||||||
f = string.lower(string.strip(f[:i])) + \
|
f = string.lower(string.strip(f[:i])) + \
|
||||||
'=' + string.strip(f[i+1:])
|
'=' + string.strip(f[i+1:])
|
||||||
self.plist.append(string.strip(f))
|
self.plist.append(string.strip(f))
|
||||||
|
str = str[end:]
|
||||||
|
|
||||||
def getplist(self):
|
def getplist(self):
|
||||||
return self.plist
|
return self.plist
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue