Merge pull request #698 from gruzovator/master

more simple rm pyc files command
This commit is contained in:
2016-04-20 10:43:05 -04:00
+1 -1
View File
@@ -224,7 +224,7 @@ Removing Bytecode (.pyc) Files
Here's nice trick for removing all of these files, if they already exist::
$ find . -name "*.pyc" -exec rm -rf {} \;
$ find . -name "*.pyc" -delete
Run that from the root directory of your project, and all ``.pyc`` files
will suddenly vanish. Much better.