Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ftplugin/orgmode/plugins/Export.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ def _export(cls, format_):
p.wait()

if p.returncode != 0 or settings.get(u'org_export_verbose') == 1:
echom('\n'.join(p.communicate()))
echom('\n'.join(map(
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use u_decode function from here.

So something like map(u_decode, p.communicate())

lambda x: x.decode('utf-8'),
p.communicate())))
return p.returncode

@classmethod
Expand Down