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

Issue 143623007: Fix an errant pylint change. (Closed)

Created:
6 years, 10 months ago by jbudorick
Modified:
6 years, 10 months ago
Reviewers:
craigdh, cjhopman, frankf
CC:
chromium-reviews, craigdh+watch_chromium.org, bulach+watch_chromium.org, yfriedman+watch_chromium.org, ilevy-cc_chromium.org, klundberg+watch_chromium.org, frankf+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

I broke something by removing an apparently unused import that actually was used elsewhere. I addressed the issue by having the client code just call android_commands.GetAttachedDevices explicitly. BUG=168518 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=250206

Patch Set 1 #

Total comments: 3

Patch Set 2 : #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+2 lines, -2 lines) Patch
M build/android/PRESUBMIT.py View 1 chunk +0 lines, -2 lines 0 comments Download
M build/android/gyp/util/build_device.py View 1 1 chunk +2 lines, -0 lines 1 comment Download

Messages

Total messages: 19 (0 generated)
jbudorick
Surprise, surprise.
6 years, 10 months ago (2014-02-10 15:57:55 UTC) #1
frankf
+cjhopman FYI https://codereview.chromium.org/143623007/diff/1/build/android/gyp/get_device_configuration.py File build/android/gyp/get_device_configuration.py (right): https://codereview.chromium.org/143623007/diff/1/build/android/gyp/get_device_configuration.py#newcode25 build/android/gyp/get_device_configuration.py:25: from pylib import android_commands I'm guessing the ...
6 years, 10 months ago (2014-02-10 18:35:12 UTC) #2
jbudorick
https://codereview.chromium.org/143623007/diff/1/build/android/gyp/get_device_configuration.py File build/android/gyp/get_device_configuration.py (right): https://codereview.chromium.org/143623007/diff/1/build/android/gyp/get_device_configuration.py#newcode25 build/android/gyp/get_device_configuration.py:25: from pylib import android_commands On 2014/02/10 18:35:12, frankf wrote: ...
6 years, 10 months ago (2014-02-10 18:39:37 UTC) #3
frankf
lgtm to get the fix in. I don't have a strong opinion either way (Chris ...
6 years, 10 months ago (2014-02-10 18:47:00 UTC) #4
jbudorick
On 2014/02/10 18:47:00, frankf wrote: > lgtm to get the fix in. I don't have ...
6 years, 10 months ago (2014-02-10 18:50:23 UTC) #5
cjhopman
https://codereview.chromium.org/143623007/diff/1/build/android/gyp/get_device_configuration.py File build/android/gyp/get_device_configuration.py (right): https://codereview.chromium.org/143623007/diff/1/build/android/gyp/get_device_configuration.py#newcode25 build/android/gyp/get_device_configuration.py:25: from pylib import android_commands On 2014/02/10 18:39:37, jbudorick wrote: ...
6 years, 10 months ago (2014-02-10 18:50:46 UTC) #6
cjhopman
On 2014/02/10 18:50:23, jbudorick wrote: > On 2014/02/10 18:47:00, frankf wrote: > > lgtm to ...
6 years, 10 months ago (2014-02-10 18:51:24 UTC) #7
jbudorick
On 2014/02/10 18:50:46, cjhopman wrote: > https://codereview.chromium.org/143623007/diff/1/build/android/gyp/get_device_configuration.py > File build/android/gyp/get_device_configuration.py (right): > > https://codereview.chromium.org/143623007/diff/1/build/android/gyp/get_device_configuration.py#newcode25 > ...
6 years, 10 months ago (2014-02-10 19:02:01 UTC) #8
jbudorick
Restoring the original pre-pylint version with an inline pylint warning disable.
6 years, 10 months ago (2014-02-10 19:13:31 UTC) #9
frankf
lgtm. Thanks John.
6 years, 10 months ago (2014-02-10 19:16:17 UTC) #10
jbudorick
The CQ bit was checked by jbudorick@chromium.org
6 years, 10 months ago (2014-02-10 19:17:32 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jbudorick@chromium.org/143623007/110001
6 years, 10 months ago (2014-02-10 19:20:08 UTC) #12
cjhopman
On 2014/02/10 19:02:01, jbudorick wrote: > On 2014/02/10 18:50:46, cjhopman wrote: > > > https://codereview.chromium.org/143623007/diff/1/build/android/gyp/get_device_configuration.py ...
6 years, 10 months ago (2014-02-10 19:27:33 UTC) #13
cjhopman
https://codereview.chromium.org/143623007/diff/110001/build/android/gyp/util/build_device.py File build/android/gyp/util/build_device.py (right): https://codereview.chromium.org/143623007/diff/110001/build/android/gyp/util/build_device.py#newcode21 build/android/gyp/util/build_device.py:21: from pylib.android_commands import GetAttachedDevices # pylint: disable=W0611 I think ...
6 years, 10 months ago (2014-02-10 19:28:49 UTC) #14
cjhopman
On 2014/02/10 19:28:49, cjhopman wrote: > https://codereview.chromium.org/143623007/diff/110001/build/android/gyp/util/build_device.py > File build/android/gyp/util/build_device.py (right): > > https://codereview.chromium.org/143623007/diff/110001/build/android/gyp/util/build_device.py#newcode21 > ...
6 years, 10 months ago (2014-02-10 19:29:31 UTC) #15
jbudorick
On 2014/02/10 19:27:33, cjhopman wrote: > On 2014/02/10 19:02:01, jbudorick wrote: > > On 2014/02/10 ...
6 years, 10 months ago (2014-02-10 19:31:45 UTC) #16
jbudorick
On 2014/02/10 19:28:49, cjhopman wrote: > https://codereview.chromium.org/143623007/diff/110001/build/android/gyp/util/build_device.py > File build/android/gyp/util/build_device.py (right): > > https://codereview.chromium.org/143623007/diff/110001/build/android/gyp/util/build_device.py#newcode21 > ...
6 years, 10 months ago (2014-02-10 19:33:37 UTC) #17
commit-bot: I haz the power
Change committed as 250206
6 years, 10 months ago (2014-02-10 21:12:07 UTC) #18
jbudorick
6 years, 10 months ago (2014-02-11 01:09:45 UTC) #19
Message was sent while issue was closed.
A revert of this CL has been created in
https://codereview.chromium.org/159453002/ by jbudorick@chromium.org.

The reason for reverting is: crbug.com/342539 is likely happening because of the
patch that this patch depends on. I need to ensure that logcats work on the bots
before relanding (and that the corresponding steps fail if they don't.).

Powered by Google App Engine
This is Rietveld 408576698