Bug 1620860 - mozlint/yamllint - Fix the python path include r=Dexter

Differential Revision: https://phabricator.services.mozilla.com/D65908

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Sylvestre Ledru 2020-03-09 10:13:45 +00:00
Родитель 4da3ae8341
Коммит 3baed30511
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -63,7 +63,7 @@ def get_yamllint_binary(mc_root):
# yamllint is vendored in mozilla-central: let's use this
# if no environment variable is found.
return os.path.join(mc_root, 'third_party', 'python', 'yamllint')
return os.path.join(mc_root, 'third_party', 'python', 'yamllint', 'yamllint')
def _run_pip(*args):