]> granicus.if.org Git - python/commitdiff
add missing loop step to parseplist()
authorGuido van Rossum <guido@python.org>
Thu, 25 Jan 1996 18:07:08 +0000 (18:07 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 25 Jan 1996 18:07:08 +0000 (18:07 +0000)
Lib/mimetools.py

index 71d0087d2e0aea51161688964c00123a1e802351..78e1461ea355d303baecd1fb3f0537e9dd728f40 100644 (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