浏览代码

Merge branch '3.0'

Conflicts:
	pavement.py
Ask Solem 12 年之前
父节点
当前提交
9c564a967a
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      pavement.py

+ 1 - 0
pavement.py

@@ -134,6 +134,7 @@ def pep8(options):
 def removepyc(options):
     sh('find . -type f -a \\( {0} \\) | xargs rm'.format(
         ' -o '.join("-name '{0}'".format(pat) for pat in PYCOMPILE_CACHES)))
+    sh('find . -type d -name "__pycache__" | xargs rm -r')
 
 
 @task