add missing loop step to parseplist()

This commit is contained in:
Guido van Rossum 1996-01-25 18:07:08 +00:00
parent f7476c5088
commit eacce12fdc

View file

@ -54,6 +54,7 @@ class Message(rfc822.Message):
f = string.lower(string.strip(f[:i])) + \
'=' + string.strip(f[i+1:])
self.plist.append(string.strip(f))
str = str[end:]
def getplist(self):
return self.plist