]> git.phdru.name Git - mimedecode.git/commitdiff
Use raise Exception() for Python 3 compatibility
authorOleg Broytman <phd@phdru.name>
Thu, 28 Jul 2016 22:12:27 +0000 (01:12 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 28 Jul 2016 22:12:27 +0000 (01:12 +0300)
mimedecode.py

index c30c8e656241dfd769b617083d6d0ef1b26c42e1..8c18c6ae0cbc1ff752092c07f24ae6759ce57949 100755 (executable)
@@ -373,7 +373,7 @@ def decode_part(msg):
 
     for content_type in masks:
         if content_type in g.error_mask:
-            raise ValueError, "content type %s prohibited" % ctype
+            raise ValueError("content type %s prohibited" % ctype)
 
 def decode_multipart(msg):
     "Decode multipart"
@@ -427,7 +427,7 @@ def decode_multipart(msg):
 
     for content_type in masks:
         if content_type in g.error_mask:
-            raise ValueError, "content type %s prohibited" % ctype
+            raise ValueError("content type %s prohibited" % ctype)
 
     output_headers(msg)