aboutsummaryrefslogtreecommitdiff
path: root/checkbuild.py
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-11-16 14:13:19 -0800
committerDan Albert <danalbert@google.com>2015-11-16 14:13:52 -0800
commit336ed39fd624faccab591070b18173e59c1318eb (patch)
treea2b80ab848068550fd8308d9d788fb22e472819b /checkbuild.py
parente1fe348947ebd50fb613e9aee01daee8139cdfd6 (diff)
downloadndk-336ed39fd624faccab591070b18173e59c1318eb.tar.gz
Fix pylint/pep8 errors.
Change-Id: Idba8b90a60c7473439c771caabf0007a7884e398
Diffstat (limited to 'checkbuild.py')
-rw-r--r--checkbuild.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/checkbuild.py b/checkbuild.py
index 6ed2b6207..f028d53f2 100644
--- a/checkbuild.py
+++ b/checkbuild.py
@@ -86,7 +86,8 @@ class ArgParser(argparse.ArgumentParser):
module_group = self.add_mutually_exclusive_group()
module_group.add_argument(
- '--module', choices=sorted(ALL_MODULES), help='NDK modules to build.')
+ '--module', choices=sorted(ALL_MODULES),
+ help='NDK modules to build.')
module_group.add_argument(
'--host-only', action='store_true',
@@ -489,6 +490,7 @@ def build_build(out_dir, _):
build_support.make_package('build', files, out_dir, root_dir,
repo_prop_dir='build')
+
def build_python_packages(out_dir, _):
# Stage the files in a temporary directory to make things easier.
temp_dir = tempfile.mkdtemp()