Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: ensure_dependencies.py

Issue 29345187: Noissue - Got rid of non-defualt script encodings in buildtools (Closed)
Patch Set: Created May 28, 2016, 12:23 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chainedconfigparser.py ('k') | localeTools.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # coding: utf-8
3 2
4 # This Source Code Form is subject to the terms of the Mozilla Public 3 # This Source Code Form is subject to the terms of the Mozilla Public
5 # License, v. 2.0. If a copy of the MPL was not distributed with this 4 # License, v. 2.0. If a copy of the MPL was not distributed with this
6 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 6
8 import sys 7 import sys
9 import os 8 import os
10 import posixpath 9 import posixpath
11 import re 10 import re
12 import io 11 import io
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 args = parser.parse_args() 372 args = parser.parse_args()
374 373
375 if args.quiet: 374 if args.quiet:
376 logging.disable(logging.INFO) 375 logging.disable(logging.INFO)
377 376
378 repos = args.repos 377 repos = args.repos
379 if not len(repos): 378 if not len(repos):
380 repos = [os.path.dirname(__file__)] 379 repos = [os.path.dirname(__file__)]
381 for repo in repos: 380 for repo in repos:
382 resolve_deps(repo) 381 resolve_deps(repo)
OLDNEW
« no previous file with comments | « chainedconfigparser.py ('k') | localeTools.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld