summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Rackham <srackham@methods.co.nz>2012-07-02 17:43:04 +1200
committerStuart Rackham <srackham@methods.co.nz>2012-07-02 17:43:04 +1200
commit2e5863118c36b703417119515e8bf6086e57d9d6 (patch)
treed94f63dcea69217914b4d5fb70277d6f7273f350
parentc3249e8872967ca878a8ba659a3cd1679e43bd25 (diff)
downloadasciidoc-2e5863118c36b703417119515e8bf6086e57d9d6.tar.gz
music filter: Removed --beams=None option from abc2ly invokation because it is
broken on Lilypond 2.14 (Ubuntu 12.04) -- get 'abc2ly: error: --beams option does not take a value' (the man page says --beams is the correct syntax but on the info page says --beams=None is). I've never understood what this option is supposed to do.
-rwxr-xr-xfilters/music/music2png.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/music/music2png.py b/filters/music/music2png.py
index 011cd1d..278b1a9 100755
--- a/filters/music/music2png.py
+++ b/filters/music/music2png.py
@@ -135,7 +135,7 @@ def music2png(format, infile, outfile, modified):
os.chdir(outdir)
try:
if format == 'abc':
- run('abc2ly --beams=None -o "%s" "%s"' % (ly,abc))
+ run('abc2ly -o "%s" "%s"' % (ly,abc))
run('lilypond --png -o "%s" "%s"' % (basefile,ly))
os.rename(png, outfile)
finally: