# HG changeset patch # User Steve Losh # Date 1348766574 14400 # Node ID c4bc191a0127fd5d597955bbb06fce14edbb0884 # Parent 9626235f7fe1ef677f964eb0d395702be73e9598# Parent d6c1bac54f7d9e4219a46932b726cb3a76f20d80 Merge. diff -r 9626235f7fe1 -r c4bc191a0127 ffind --- 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