+2005-08-30 Han-Wen Nienhuys <hanwen@xs4all.nl>
+
+ * scripts/lilypond-book.py (get_latex_textwidth): bugfix for splitext().
+
2005-08-30 Jan Nieuwenhuizen <janneke@gnu.org>
* stepmake/aclocal.m4: Include MY_PATCH_LEVEL in config.make's
# Workaround problems with unusable $TMP on Cygwin:
tempfile.tempdir = ''
tmpfile = tempfile.mktemp('.tex')
- logfile = os.path.splitext (tmpfile) + '.log'
+ logfile = os.path.splitext (tmpfile)[0] + '.log'
open (tmpfile,'w').write (latex_document)
ly.system ('latex %s' % tmpfile)
parameter_string = open (logfile).read()