mercurial/patch.py
branchstable
changeset 51679 8f629783b8ae
parent 50951 d718eddf01d9
--- a/mercurial/patch.py	Thu Aug 08 17:28:38 2024 +0400
+++ b/mercurial/patch.py	Fri Aug 09 14:26:13 2024 +0200
@@ -122,7 +122,7 @@
         if not m.is_multipart():
             yield msgfp(m)
         else:
-            ok_types = (b'text/plain', b'text/x-diff', b'text/x-patch')
+            ok_types = ('text/plain', 'text/x-diff', 'text/x-patch')
             for part in m.walk():
                 ct = part.get_content_type()
                 if ct not in ok_types: