From ac4c5fd6bdea53e319e8b062fabb776b30fcb269 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 24 May 2014 15:26:04 +0300 Subject: [PATCH] email.errors: Fix MicroPython multiple inheritance from native type issues. --- email.errors/email/errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/email.errors/email/errors.py b/email.errors/email/errors.py index 791239fa..d5444f6e 100644 --- a/email.errors/email/errors.py +++ b/email.errors/email/errors.py @@ -21,7 +21,7 @@ class BoundaryError(MessageParseError): """Couldn't find terminating boundary.""" -class MultipartConversionError(MessageError, TypeError): +class MultipartConversionError(MessageError):#, TypeError): """Conversion to a multipart is prohibited."""