mirror of
https://github.com/kastdeur/lilydrum.git
synced 2024-12-22 09:13:33 +01:00
Fixed problems with a debian install not using python3.4
MakeDrum now uses /usr/bin/env python3 for this
This commit is contained in:
parent
22520541ff
commit
5ffe8e28e4
1 changed files with 3 additions and 3 deletions
6
makedrum
6
makedrum
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3.4
|
||||
#!/usr/bin/env python3
|
||||
|
||||
## Generate pdf form lilypond file
|
||||
## by using standard command
|
||||
|
@ -45,8 +45,8 @@ class MakeDrum:
|
|||
dest='orientation', default='landscape',
|
||||
help='Paper orientation. Default: landscape')
|
||||
parser.add_argument('-s', '--staff-size',
|
||||
dest='staffsize', default='20',
|
||||
help='Staff size. Default: 16pt.')
|
||||
dest='staffsize', default='18',
|
||||
help='Staff size. Default: 18pt.')
|
||||
parser.add_argument('-w', '--view-spacing',
|
||||
action='store_true', dest='view_spacing', default=False,
|
||||
help='Turn on "Paper.annotatespacing".')
|
||||
|
|
Loading…
Reference in a new issue