Fixed problems with a debian install not using python3.4

MakeDrum now uses /usr/bin/env python3 for this
This commit is contained in:
Eric Teunis de Boone 2016-05-17 10:36:27 +02:00
parent 22520541ff
commit 5ffe8e28e4
1 changed files with 3 additions and 3 deletions

View File

@ -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".')