diff options
author | kotfu <kotfu@kotfu.net> | 2019-07-06 13:56:07 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2019-07-06 13:56:07 -0600 |
commit | e5288ee47c0a2bab32b295ce46c5d465e89c0ee2 (patch) | |
tree | 211a62d4701c8065161301055cb99bba7d6b8a9d /tasks.py | |
parent | 9fe8e36a1e26569bdb47b8c361d077675a876af9 (diff) | |
download | cmd2-git-e5288ee47c0a2bab32b295ce46c5d465e89c0ee2.tar.gz |
Fix incorrect path in doc8 task
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -104,7 +104,7 @@ namespace.add_task(docs) @invoke.task() def doc8(context): "Check documentation with doc8" - context.run('doc8 docs --ignore-path _build') + context.run('doc8 docs --ignore-path docs/_build') namespace.add_task(doc8) @invoke.task |