Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3704)

Unified Diff: build/android/avd.py

Issue 132463007: Enable presubmit pylint in build/android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase vs tot and only disabling F0401 in specific spots Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/asan_symbolize.py ('k') | build/android/bb_run_sharded_steps.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/avd.py
diff --git a/build/android/avd.py b/build/android/avd.py
index d9cb82c7de32f84f5e64bf94eb899b5517dab0f4..1de0b41a10056d36ea8d3d720a79eda6dd45fac6 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')
« no previous file with comments | « build/android/asan_symbolize.py ('k') | build/android/bb_run_sharded_steps.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698