From c271a6151bbd714527cefc8f19bfd3cb4f08ad0a Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Fri, 15 May 2020 03:12:52 +0200 Subject: [PATCH] Fix string in invoke --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index aac8028..380c823 100644 --- a/tasks.py +++ b/tasks.py @@ -60,7 +60,7 @@ def tag_dev(c): def docbuild(c): """ Build documentation. """ os.chdir("docs") - c.run(f"python -msphinx -W -b html -d _build/doctrees . _build/html") + c.run("python -msphinx -W -b html -d _build/doctrees . _build/html") @task(docbuild)