c4bc191a0127

Merge.
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Thu, 27 Sep 2012 13:22:54 -0400
parents 9626235f7fe1 (current diff) d6c1bac54f7d (diff)
children 79c4363ffbef
branches/tags (none)
files ffind

Changes

--- a/ffind	Thu Sep 27 13:22:41 2012 -0400
+++ b/ffind	Thu Sep 27 13:22:54 2012 -0400
@@ -327,8 +327,9 @@
     if options.ignore_vcs_dirs and basename in VCS_DIRS:
         return True
 
-    if any(map(lambda i: i(path), ignorers)):
-        return True
+    for i in ignorers:
+        if i(path):
+            return True
 
     return False