From bb904d6baee07b391bd3a8aa7fa9a4e4048113e9 Mon Sep 17 00:00:00 2001 From: Oliverpool Date: Tue, 9 Feb 2016 23:42:19 +0100 Subject: [PATCH] bugfix to check if lilypond is required --- patacrep/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patacrep/build.py b/patacrep/build.py index b003a0ee..d5b922d5 100644 --- a/patacrep/build.py +++ b/patacrep/build.py @@ -159,7 +159,7 @@ class Songbook: def requires_lilypond(self): """Tell if lilypond is part of the bookoptions""" - return 'lilypond' in iter_bookoptions(self._config) + return 'lilypond' in iter_bookoptions(self._raw_config) def _log_pipe(pipe): """Log content from `pipe`."""