Skip to content
Snippets Groups Projects
Commit 6b97943a authored by Kevin Lyda's avatar Kevin Lyda :speech_balloon:
Browse files

clean up __pycache__ dir.

parent 66955b6f
No related branches found
No related tags found
No related merge requests found
...@@ -65,7 +65,8 @@ class CleanCmd(Command): ...@@ -65,7 +65,8 @@ class CleanCmd(Command):
def run(self): def run(self):
# Configure for this project. # Configure for this project.
suffixes2del = ['MANIFEST', '.pyc', 'chkcrontabc'] suffixes2del = ['MANIFEST', '.pyc', 'chkcrontabc']
dirs2del = ['./build', './dist', './.tox', './.coverage'] dirs2del = ['./build', './dist', './.tox', './.coverage',
'./__pycache__']
dirs2ign = ['./.git'] dirs2ign = ['./.git']
# End config. # End config.
doomed = set() doomed = set()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment