Browse Source

Logging: better handling of newlines

pull/70/head
Louis 10 years ago
parent
commit
e9af147866
  1. 4
      patacrep/build.py

4
patacrep/build.py

@ -200,7 +200,9 @@ class SongbookBuilder(object):
stdin=PIPE,
stdout=PIPE,
stderr=PIPE,
env=os.environ)
env=os.environ,
universal_newlines=True,
)
except Exception as error:
LOGGER.debug(error)
raise errors.LatexCompilationError(self.basename)

Loading…
Cancel
Save