diff options
author | kotfu <kotfu@kotfu.net> | 2018-05-28 22:22:22 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2018-05-28 22:22:22 -0600 |
commit | a125027a52ae436c24e9e2a48a0bfed355f9091d (patch) | |
tree | 08e8ddcda47dd51d6fd23b8b05cb14e50e139a30 /tasks.py | |
parent | b0965f1bb19fb2e8041abeb4b27eeb89f450a48a (diff) | |
download | cmd2-git-a125027a52ae436c24e9e2a48a0bfed355f9091d.tar.gz |
Fix typo
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ namespace.add_task(pytest) def pytest_clean(context): "Remove pytest cache and code coverage files and directories" #pylint: disable=unused-argument - dirs = ['.pytest-cache', '.cache', 'htmlcov', '.coverage'] + dirs = ['.pytest_cache', '.cache', 'htmlcov', '.coverage'] rmrf(dirs) namespace_clean.add_task(pytest_clean, 'pytest') |