From: martin f. krafft Date: Wed, 23 Aug 2023 05:08:55 +0000 (+1200) Subject: buildmimetree.py: Prefix inline image description X-Git-Url: https://git.madduck.net/etc/neomutt.git/commitdiff_plain/e36b494ec01c23b5963f71383b17052b478c6581 buildmimetree.py: Prefix inline image description --- diff --git a/.config/neomutt/buildmimetree.py b/.config/neomutt/buildmimetree.py index a570a3b..06f62c5 100755 --- a/.config/neomutt/buildmimetree.py +++ b/.config/neomutt/buildmimetree.py @@ -246,7 +246,7 @@ def collect_inline_images( filewriter_fn(path, data.read(), "w+b") relparts.append( - Part(*mimetype.split("/"), path, cid=info.cid, desc=info.desc) + Part(*mimetype.split("/"), path, cid=info.cid, desc=f"Image: {info.desc}") ) return relparts @@ -934,7 +934,7 @@ try: assert relparts[0].subtype == "png" assert relparts[0].path == written[0] assert relparts[0].cid == const1 - assert relparts[0].desc == const2 + assert relparts[0].desc.endswith(const2) except ImportError: pass