Skip to content

Commit 50464f2

Browse files
authored
Merge pull request #291 from sbihel/master
Fix export error messages encoding issues #279
2 parents c70b71f + d53989a commit 50464f2

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)