Bug 1301720: fix lint; r=philor

MozReview-Commit-ID: BkNnaXQMQ3U
This commit is contained in:
Dustin J. Mitchell 2016-09-17 00:57:54 +00:00
Родитель 628f2d79ca
Коммит d5b40f9e88
1 изменённых файлов: 4 добавлений и 4 удалений

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

@ -542,10 +542,10 @@ def check_v2_routes():
# we use different variables than mozharness
for mh, tg in [
('{index}', 'index'),
('{build_product}', '{product}'),
('{build_name}-{build_type}', '{job-name-gecko-v2}'),
('{year}.{month}.{day}.{pushdate}', '{pushdate_long}')]:
('{index}', 'index'),
('{build_product}', '{product}'),
('{build_name}-{build_type}', '{job-name-gecko-v2}'),
('{year}.{month}.{day}.{pushdate}', '{pushdate_long}')]:
routes = [r.replace(mh, tg) for r in routes]
if sorted(routes) != sorted(V2_ROUTE_TEMPLATES):