We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c70b71f + d53989a commit 50464f2Copy full SHA for 50464f2
ftplugin/orgmode/plugins/Export.py
@@ -81,7 +81,7 @@ def _export(cls, format_):
81
p.wait()
82
83
if p.returncode != 0 or settings.get(u'org_export_verbose') == 1:
84
- echom('\n'.join(p.communicate()))
+ echom('\n'.join(map(lambda x: x.decode(), p.communicate())))
85
return p.returncode
86
87
@classmethod
0 commit comments