From 5ffe8e28e40b22ae802ad13db6057fa8b501f64c Mon Sep 17 00:00:00 2001 From: Eric Teunis de Boone Date: Tue, 17 May 2016 10:36:27 +0200 Subject: [PATCH] Fixed problems with a debian install not using python3.4 MakeDrum now uses /usr/bin/env python3 for this --- makedrum | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makedrum b/makedrum index 4d7e0e8..768c436 100755 --- a/makedrum +++ b/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".')