Chromium Code Reviews| Index: presubmit_canned_checks.py |
| diff --git a/presubmit_canned_checks.py b/presubmit_canned_checks.py |
| index 995aa45504c0ac1f1382d3cd98ee5b2812e125c1..a8c5203f9fec252dd3ec37a7c6c086059cc4d465 100644 |
| --- a/presubmit_canned_checks.py |
| +++ b/presubmit_canned_checks.py |
| @@ -677,7 +677,7 @@ def RunPylint(input_api, output_api, white_list=None, black_list=None, |
| env = input_api.environ.copy() |
| import sys |
| env['PYTHONPATH'] = input_api.os_path.pathsep.join( |
| - extra_paths_list + sys.path) |
| + extra_paths_list + sys.path).encode('ascii', 'ignore') |
|
M-A Ruel
2013/02/19 21:07:40
utf8
technically we'd want the code page but utf8
robertshield
2013/02/20 15:23:37
Done.
|
| def run_lint(files): |
| # We can't import pylint directly due to licensing issues, so we run |