Bug 1559975 - fix python2 lint issues in tools/mach_commands.py r=ahal,catlee

Changes:
- add `print_function` to satisfy py2 linter

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Edwin Gao 2019-07-19 14:50:07 +00:00
Родитель 1fe1b5271f
Коммит 892c0866e2
2 изменённых файлов: 1 добавлений и 2 удалений

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

@ -36,7 +36,6 @@ py2:
- tools/docs
- tools/jprof/split-profile.py
- tools/lint
- tools/mach_commands.py
- tools/profiler
- tools/rb
- tools/update-packaging

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

@ -2,7 +2,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, # You can obtain one at http://mozilla.org/MPL/2.0/.
from __future__ import absolute_import, unicode_literals
from __future__ import absolute_import, print_function, unicode_literals
import sys