| OLD | NEW |
| 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 Loading... |
| 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) |
| OLD | NEW |