We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce17a40 commit d53989aCopy full SHA for d53989a
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