bug 1357808: fix flake8 error. a=dawn DONTBUILD

--HG--
extra : amend_source : 35661749e33541c6ad4123d5298ec722b0fbadbf
This commit is contained in:
Ben Hearsum 2017-05-24 11:24:26 -04:00
Родитель af8ecb9a1e
Коммит ed78ee69e4
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -29,8 +29,8 @@ def get_dependent_loaded_tasks(config, loaded_tasks):
task for task in tasks_with_matching_kind
# old-id builds are not shipped through the Play store, so we don't
# want them as dependencies.
if task.attributes.get('build_platform', '').startswith('android') and \
'old-id' not in task.attributes.get('build_platform', '')
if task.attributes.get('build_platform', '').startswith('android') \
and 'old-id' not in task.attributes.get('build_platform', '')
]
return android_tasks