From c953696f9713c5e86a96032b3bb69c99deab0a0a Mon Sep 17 00:00:00 2001 From: Eric Teunis de Boone Date: Tue, 25 Oct 2016 05:20:31 +0200 Subject: [PATCH] Lily{pipe,drum} was printed as a list --- makedrum | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/makedrum b/makedrum index 4237da6..9aea760 100755 --- a/makedrum +++ b/makedrum @@ -197,10 +197,14 @@ class MakeDrum: break if include_drum_file: - self.args.includes.insert(0, self.args.lilydrum) + for f in self.args.lilydrum: + print(f) + self.args.includes.insert(0, f) if include_pipe_file: - self.args.includes.insert(0, self.args.lilypipe) + for f in self.args.lilypipe: + print(f) + self.args.includes.insert(0, f) # set up a tmp file with template and file combined tmp_file = os.path.join(tmp_dir, self.TMP_PREFIX + os.path.relpath(file).replace('../','').replace('music/','',1).replace('/', '-')[:-3] + self.args.suffix + '.ly')