From 3b3585f575d748db3e15992d12e81d2b9147cfca Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Fri, 27 Sep 2013 10:43:10 +0800 Subject: [PATCH] Skip the check for lib.github. --- script/pylint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/pylint.py b/script/pylint.py index 399bb37..b805abb 100755 --- a/script/pylint.py +++ b/script/pylint.py @@ -13,7 +13,7 @@ def main(): pylint = os.path.join(SOURCE_ROOT, 'vendor', 'depot_tools', 'pylint.py') settings = ['--rcfile=vendor/depot_tools/pylintrc'] - pys = glob.glob('script/*.py') + [os.path.join('script', 'lib')] + pys = glob.glob('script/*.py') subprocess.check_call([sys.executable, pylint] + settings + pys, env=dict(PYTHONPATH='script')) -- 2.7.4