plugins: rename 'filter' method in BUCK file

The name 'filter' overrides a python built-in method.

Change-Id: I187d4d34a9c757d76d76d7707156c7482ea59fb4
This commit is contained in:
David Pursehouse 2015-12-09 14:45:42 +09:00
parent bdf94ff125
commit 43050f6cde

View File

@ -11,7 +11,7 @@ CORE = [
# from the root(s) passed to audit. Filter dependencies to only
# the ones that currently exist to allow buck to parse cleanly.
# TODO(sop): buck should more lazily resolve deps
def filter(names):
def core_plugins(names):
from os import path
h, n = [], []
for p in names:
@ -20,7 +20,7 @@ def filter(names):
else:
n.append(p)
return h, n
HAVE, NEED = filter(CORE)
HAVE, NEED = core_plugins(CORE)
genrule(
name = 'core',