Graham, you wrote Wednesday, January 11, 2012 10:43 AM
Just as a quick check of the ridiculous: could you open up lilypond-book.py and confirm that line 213 is: stdout=subprocess.PIPE, stderr=subprocess.PIPE) there might be an off-by-one thing happening.
Yes it is.
if that's the case, then try deleting the "subprocess" so that the line is: stdout=PIPE, stderr=PIPE)
File "c:\program files\lilypond\usr\share\lilypond\current\python\book_texinfo
.py", line 215, in get_texinfo_width_indent stdout=PIPE, stderr=PIPE) NameError: global name 'PIPE' is not defined Lilypond-book returned code 1 (It's 215 because I inserted a print to be sure my mods were being actioned)
I doubt that'll fix it, but you never know. When that fails, try: stdout='PIPE', stderr='PIPE') It'll probably also fail, but it's worth a shot.
File "c:\program files\lilypond\usr\share\lilypond\current\python\book_texinfo
.py", line 215, in get_texinfo_width_indent stdout='PIPE', stderr='PIPE') File "/usr/lib/python2.4/subprocess.py", line 534, in __init__ File "/usr/lib/python2.4/subprocess.py", line 607, in _get_handles AttributeError: 'str' object has no attribute 'fileno' Lilypond-book returned code 1 Trevor _______________________________________________ lilypond-devel mailing list lilypond-devel@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-devel