[pypy-svn] r17805 - pypy/dist/pypy/tool

hpk at codespeak.net hpk at codespeak.net
Sat Sep 24 07:57:42 CEST 2005


Author: hpk
Date: Sat Sep 24 07:57:41 2005
New Revision: 17805

Modified:
   pypy/dist/pypy/tool/fixeol
Log:
don't use py.path.checker anymore


Modified: pypy/dist/pypy/tool/fixeol
==============================================================================
--- pypy/dist/pypy/tool/fixeol	(original)
+++ pypy/dist/pypy/tool/fixeol	Sat Sep 24 07:57:41 2005
@@ -69,7 +69,7 @@
     for fn in fns: 
         fixfile(fn) 
 
-    for x in path.listdir(py.path.checker(dir=1, versioned=True)): 
+    for x in path.listdir(lambda x: x.check(dir=1, versioned=True)): 
         fixdirectory(x) 
 
 def fixfile(path): 



More information about the Pypy-commit mailing list