summaryrefslogtreecommitdiffstats
path: root/build/android/avd.py
diff options
context:
space:
mode:
authorjbudorick@chromium.org <jbudorick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-07 21:34:23 +0000
committerjbudorick@chromium.org <jbudorick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-07 21:34:23 +0000
commit7c3d872bdb4afe76f13e8d0bac3f0b08bc144045 (patch)
tree89fcfeb287949f5ab4aabbdf411c2d729fb1b4b0 /build/android/avd.py
parentd851e2fe6bc837a135dfb36a0e8861b4d84d738f (diff)
downloadchromium_src-7c3d872bdb4afe76f13e8d0bac3f0b08bc144045.zip
chromium_src-7c3d872bdb4afe76f13e8d0bac3f0b08bc144045.tar.gz
chromium_src-7c3d872bdb4afe76f13e8d0bac3f0b08bc144045.tar.bz2
Enable presubmit pylint in build/android.
BUG=168518 Review URL: https://codereview.chromium.org/132463007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@249793 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/android/avd.py')
-rwxr-xr-xbuild/android/avd.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/build/android/avd.py b/build/android/avd.py
index d9cb82c7d..1de0b41 100755
--- a/build/android/avd.py
+++ b/build/android/avd.py
@@ -13,7 +13,6 @@ import install_emulator_deps
import logging
import optparse
import os
-import subprocess
import sys
from pylib import constants
@@ -45,7 +44,7 @@ def main(argv):
# Check if KVM is enabled for x86 AVD's and check for x86 system images.
# TODO(andrewhayden) Since we can fix all of these with install_emulator_deps
# why don't we just run it?
- if options.abi =='x86':
+ if options.abi == 'x86':
if not install_emulator_deps.CheckKVM():
logging.critical('ERROR: KVM must be enabled in BIOS, and installed. '
'Enable KVM in BIOS and run install_emulator_deps.py')