Skip to content

Commit

Permalink
Merge pull request jceb#291 from sbihel/master
Browse files Browse the repository at this point in the history
Fix export error messages encoding issues jceb#279
  • Loading branch information
jceb authored Jun 29, 2021
2 parents c70b71f + d53989a commit 50464f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ftplugin/orgmode/plugins/Export.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ 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(lambda x: x.decode(), p.communicate())))
return p.returncode

@classmethod
Expand Down

0 comments on commit 50464f2

Please sign in to comment.