diff options
author | Guido van Rossum <guido@python.org> | 1996-01-25 18:07:08 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-01-25 18:07:08 (GMT) |
commit | eacce12fdc3a30e76028a66aaa4227e65e459ea4 (patch) | |
tree | 848e2e3c4e9dca4f6dccc7f0cdafc09aa9b2fb0c | |
parent | f7476c5088e6f459f866901219e1b5b084fb0750 (diff) | |
download | cpython-eacce12fdc3a30e76028a66aaa4227e65e459ea4.zip cpython-eacce12fdc3a30e76028a66aaa4227e65e459ea4.tar.gz cpython-eacce12fdc3a30e76028a66aaa4227e65e459ea4.tar.bz2 |
add missing loop step to parseplist()
-rw-r--r-- | Lib/mimetools.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/mimetools.py b/Lib/mimetools.py index 71d0087..78e1461 100644 --- a/Lib/mimetools.py +++ b/Lib/mimetools.py @@ -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 |