diff options
author | nduca@chromium.org <nduca@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-09 14:27:12 +0000 |
---|---|---|
committer | nduca@chromium.org <nduca@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-09 14:27:12 +0000 |
commit | c38f1f1341384bc0a047c669d982a4caf30699b1 (patch) | |
tree | bea4f869d3f53f3f0a5d45cc0af75b6d59800c29 /build | |
parent | a5963c50b409b33ef220025dea5ea9053973131f (diff) | |
download | chromium_src-c38f1f1341384bc0a047c669d982a4caf30699b1.zip chromium_src-c38f1f1341384bc0a047c669d982a4caf30699b1.tar.gz chromium_src-c38f1f1341384bc0a047c669d982a4caf30699b1.tar.bz2 |
Print adb missing warning to stderr, not stdout
R=bulach
Review URL: https://chromiumcodereview.appspot.com/18566007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@210563 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/android/pylib/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/android/pylib/constants.py b/build/android/pylib/constants.py index 519cc97..2888232 100644 --- a/build/android/pylib/constants.py +++ b/build/android/pylib/constants.py @@ -93,7 +93,7 @@ def _GetADBPath(): subprocess.call(['adb', 'version'], stdout=devnull, stderr=devnull) return 'adb' except OSError: - print 'No adb found in $PATH, fallback to checked in binary.' + print >> sys.stderr, 'No adb found in $PATH, fallback to checked in binary.' return os.path.join(ANDROID_SDK_ROOT, 'platform-tools', 'adb') |