From 5d8c15980ef5fa854ab17dba5ab83489d640bead Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Beaupr=C3=A9?= Date: Sat, 15 Jul 2017 16:24:07 -0400 Subject: [PATCH] fix flake8 warning --- beetsplug/lyrics.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beetsplug/lyrics.py b/beetsplug/lyrics.py index c36839b29..73e7e11b1 100644 --- a/beetsplug/lyrics.py +++ b/beetsplug/lyrics.py @@ -711,7 +711,8 @@ class LyricsPlugin(plugins.BeetsPlugin): % opts.writerst) ui.print_(u' sphinx-build -b epub %s _build/epub' % opts.writerst) - ui.print_(u' sphinx-build -b latex %s _build/latex && make -C _build/latex all-pdf' + ui.print_((u' sphinx-build -b latex %s _build/latex ' + u'&& make -C _build/latex all-pdf') % opts.writerst) cmd.func = func return [cmd]