Skip to content

Commit d53989a

Browse files
author
Simon Bihel
committed
Fix export error messages encoding
1 parent ce17a40 commit d53989a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ftplugin/orgmode/plugins/Export.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def _export(cls, format_):
8181
p.wait()
8282

8383
if p.returncode != 0 or settings.get(u'org_export_verbose') == 1:
84-
echom('\n'.join(p.communicate()))
84+
echom('\n'.join(map(lambda x: x.decode(), p.communicate())))
8585
return p.returncode
8686

8787
@classmethod

0 commit comments

Comments
 (0)