| Index: build/android/pylib/utils/report_results.py
|
| diff --git a/build/android/pylib/utils/report_results.py b/build/android/pylib/utils/report_results.py
|
| index 9841dc65c7d8f30cdd0205fcc11bc607ad9392fc..8f81c957d0ee39d687970e80fbefa08cd76e39ed 100644
|
| --- a/build/android/pylib/utils/report_results.py
|
| +++ b/build/android/pylib/utils/report_results.py
|
| @@ -18,7 +18,7 @@ def _LogToFile(results, test_type, suite_name):
|
| if not os.path.exists(log_file_path):
|
| os.mkdir(log_file_path)
|
| full_file_name = os.path.join(
|
| - log_file_path, re.sub('\W', '_', test_type).lower() + '.log')
|
| + log_file_path, re.sub(r'\W', '_', test_type).lower() + '.log')
|
| if not os.path.exists(full_file_name):
|
| with open(full_file_name, 'w') as log_file:
|
| print >> log_file, '\n%s results for %s build %s:' % (
|
|
|